mirror of https://gitlab.com/pamhyr/pamhyr2
correction pep8
parent
30e34b6847
commit
377c508038
|
|
@ -475,7 +475,7 @@ class LateralContributionAdisTS(SQLSubModel):
|
|||
def end_rk(self, end_rk):
|
||||
self._end_rk = end_rk
|
||||
self.modified()
|
||||
|
||||
|
||||
@property
|
||||
def _default_0(self):
|
||||
return self._types[0](0)
|
||||
|
|
@ -493,7 +493,7 @@ class LateralContributionAdisTS(SQLSubModel):
|
|||
def insert(self, index: int, data: Data):
|
||||
self._data.insert(index, data)
|
||||
self.modified()
|
||||
|
||||
|
||||
def delete_i(self, indexes):
|
||||
self._data = list(
|
||||
map(
|
||||
|
|
@ -511,13 +511,13 @@ class LateralContributionAdisTS(SQLSubModel):
|
|||
|
||||
def get_i(self, index: int):
|
||||
return self._data[index]
|
||||
|
||||
|
||||
def get_range(self, _range):
|
||||
lst = []
|
||||
for r in _range:
|
||||
lst.append(r)
|
||||
return lst
|
||||
|
||||
|
||||
def _set_i_c_v(self, index: int, column: int, value):
|
||||
v = self._data[index]
|
||||
v[column] = self._types[column](value)
|
||||
|
|
|
|||
Loading…
Reference in New Issue