Skip to content

Commit a463194

Browse files
authored
Exclude math from from petab.C import * (#143)
1 parent 70617c7 commit a463194

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

petab/C.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This file contains constant definitions.
44
"""
55

6-
import math
6+
import math as _math
77

88

99
# MEASUREMENTS
@@ -24,7 +24,7 @@
2424
TIME = 'time'
2525

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

2929
#:
3030
OBSERVABLE_PARAMETERS = 'observableParameters'

0 commit comments

Comments
 (0)