mirror of https://gitlab.com/pamhyr/pamhyr2
little fixes with variable names
parent
ccf3da114b
commit
0eb979256f
|
|
@ -398,7 +398,7 @@ class InitialConditions(SQLSubModel):
|
||||||
|
|
||||||
@reach.setter
|
@reach.setter
|
||||||
def reach(self, new):
|
def reach(self, new):
|
||||||
self._reach = reach
|
self._reach = new
|
||||||
self.modified()
|
self.modified()
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
||||||
|
|
@ -147,7 +147,7 @@ class Data(SQLSubModel):
|
||||||
it = iter(v)
|
it = iter(v)
|
||||||
|
|
||||||
pid = next(it)
|
pid = next(it)
|
||||||
delete = next(it)
|
deleted = next(it)
|
||||||
data0 = bc._types[0](next(it))
|
data0 = bc._types[0](next(it))
|
||||||
data1 = bc._types[1](next(it))
|
data1 = bc._types[1](next(it))
|
||||||
owner_scenario = next(it)
|
owner_scenario = next(it)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue