mirror of https://gitlab.com/pamhyr/pamhyr2
fix pep8 before push
parent
e940dead70
commit
ea2287215e
|
|
@ -425,10 +425,6 @@ class Pollutants(SQLSubModel):
|
|||
execute, data=data
|
||||
)
|
||||
|
||||
new_pollutant._boundary_conditions_adists = BoundaryConditionAdisTS._db_load(
|
||||
execute, data=data
|
||||
)
|
||||
|
||||
new_pollutant._boundary_conditions_adists = (
|
||||
BoundaryConditionAdisTS._db_load(
|
||||
execute,
|
||||
|
|
|
|||
|
|
@ -845,7 +845,9 @@ class AdisTSwc(AdisTS):
|
|||
# seventh line (useless)
|
||||
for k in range(0, ismax, kbl):
|
||||
data = np.fromfile(f, dtype=np.int32, count=1) # (start)
|
||||
zero = np.fromfile(f, dtype=np.int32, count=min(k + kbl, ismax) - k)
|
||||
zero = np.fromfile(
|
||||
f, dtype=np.int32, count=min(k + kbl, ismax) - k
|
||||
)
|
||||
data = np.fromfile(f, dtype=np.int32, count=1) # (end)
|
||||
# end header
|
||||
# data
|
||||
|
|
|
|||
Loading…
Reference in New Issue