mirror of https://gitlab.com/pamhyr/pamhyr2
Fix pep8
parent
846aaeadf0
commit
64d9e456b7
|
|
@ -137,9 +137,9 @@ class InternalMeshing(AMeshingTool):
|
|||
p.points[k].z = pt1[k].z + \
|
||||
dj*(pt2[k].z -
|
||||
pt1[k].z)
|
||||
p.rk = round(profiles[i].rk + \
|
||||
dj*(profiles[i+1].rk -
|
||||
profiles[i].rk), 2)
|
||||
p.rk = round(profiles[i].rk +
|
||||
dj*(profiles[i+1].rk -
|
||||
profiles[i].rk), 2)
|
||||
p.name = f'interpol{p.rk}'
|
||||
p.interpolated = True
|
||||
new_profiles2.append(p)
|
||||
|
|
|
|||
|
|
@ -278,7 +278,8 @@ def parse_datetime(value):
|
|||
+ ", ".join(SUPPORTED_DATETIME_FORMATS)
|
||||
) from iso_error
|
||||
|
||||
# If the parsed datetime has timezone information, convert it to UTC and remove the timezone info
|
||||
# If the parsed datetime has timezone information,
|
||||
# convert it to UTC and remove the timezone info
|
||||
if parsed.tzinfo is not None:
|
||||
parsed = parsed.astimezone(timezone.utc).replace(tzinfo=None)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue