Bugfix: elif chain for scenarios

This commit is contained in:
Lukas Klass 2020-09-30 21:23:23 +02:00
parent 5c31dbf87c
commit b8472c8dd0
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class Entry(object):
"' but got no unit and cannot convert '" + attr + "' to a numeric value."
else:
return "Expected parameter '" + name + "' with unit '" + unit.to_string() + "' but got no unit."
if not attr.unit.is_equivalent(unit):
elif not attr.unit.is_equivalent(unit):
if unit == u.K and attr.unit == u.Celsius:
setattr(self, name, attr.to(unit, equivalencies=u.temperature()))
setattr(self, name + '_unit', unit.to_string())