Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions petab/C.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This file contains constant definitions.
"""

import math
import math as _math


# MEASUREMENTS
Expand All @@ -24,7 +24,7 @@
TIME = 'time'

#: Time value that indicates steady-state measurements
TIME_STEADY_STATE = math.inf
TIME_STEADY_STATE = _math.inf

#:
OBSERVABLE_PARAMETERS = 'observableParameters'
Expand Down