We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5bfca1 commit bb51f16Copy full SHA for bb51f16
1 file changed
OMPython/__init__.py
@@ -999,13 +999,16 @@ def xmlparse(self):
999
start = None
1000
min = None
1001
max = None
1002
+ unit = None
1003
for att in ch:
1004
start = att.get('start')
1005
min = att.get('min')
1006
max = att.get('max')
1007
+ unit = att.get('unit')
1008
scalar["start"] =start
1009
scalar["min"] = min
1010
scalar["max"] = max
1011
+ scalar["unit"] = unit
1012
1013
if(scalar["variability"]=="parameter"):
1014
if scalar["name"] in self.overridevariables:
0 commit comments