Skip to content
Snippets Groups Projects
Commit cff1b549 authored by Maeva Pourpoint's avatar Maeva Pourpoint
Browse files

Fix flake8 error

parent 31f01c51
No related branches found
No related tags found
1 merge request!21Update/Implement GUI functionalities
Pipeline #1860 passed with stage
in 5 minutes and 18 seconds
...@@ -403,7 +403,7 @@ class LemiMetadata(): ...@@ -403,7 +403,7 @@ class LemiMetadata():
comps_ = [x for x in comps if x.startswith(type_)] comps_ = [x for x in comps if x.startswith(type_)]
if not comps_: if not comps_:
logger.warning(msg) logger.warning(msg)
if type_ == 'H' and not(all([x in comps_ for x in CHA_TYPES['mag']])): if type_ == 'H' and not all([x in comps_ for x in CHA_TYPES['mag']]):
logger.warning("LEMI-039 fluxgate is a 3-component magnetometer. " logger.warning("LEMI-039 fluxgate is a 3-component magnetometer. "
"If you did record {} data for run {}, data from " "If you did record {} data for run {}, data from "
"all magnetic components (Hx, Hy and Hz) were " "all magnetic components (Hx, Hy and Hz) were "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment