Added pre-commit checks.
This commit is contained in:
parent
d29754e4a5
commit
3ac5d348d0
3 changed files with 9 additions and 2 deletions
|
|
@ -186,7 +186,7 @@ def _parse_phenocam_csv(
|
|||
return gcc_series, image_list
|
||||
|
||||
with csv_path.open() as f:
|
||||
lines = [l for l in f if not l.startswith("#")]
|
||||
lines = [line for line in f if not line.startswith("#")]
|
||||
|
||||
reader = csv.DictReader(lines)
|
||||
for row in reader:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue