scenarios
Theophile Terraz 2026-01-30 12:08:10 +01:00
parent 1db1a543c7
commit d6ab44d18e
3 changed files with 3 additions and 3 deletions

View File

@ -320,7 +320,8 @@ class Pollutants(SQLSubModel):
bc=float(data[8]), bc=float(data[8]),
pollutant=self, pollutant=self,
status=self._status status=self._status
)] )
]
@classmethod @classmethod
def _db_create(cls, execute, ext=""): def _db_create(cls, execute, ext=""):

View File

@ -170,7 +170,7 @@ class Rubar3(CommandLineSolver):
it = iter(params) it = iter(params)
param = next(it, None) param = next(it, None)
while param != None: while param is not None:
name = param.name name = param.name
value = param.value value = param.value

View File

@ -266,7 +266,6 @@ class MainTranslate(UnitTranslate):
"incompatible study version" "incompatible study version"
) )
self._dict["mb_unsaved_study_title"] = _translate( self._dict["mb_unsaved_study_title"] = _translate(
"MainWindow", "Open scenarios window" "MainWindow", "Open scenarios window"
) )