Skip to content

Commit 143cf11

Browse files
authored
Make code more verbose to pass checks
1 parent f73dd03 commit 143cf11

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ctd/read.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,8 +529,8 @@ def from_castaway_csv(fname):
529529
# Add metadata
530530
meta = [s.replace("%", "").strip().split(",") for s in meta]
531531
metadata = {}
532-
for l in meta:
533-
metadata[l[0]] = l[1]
532+
for line in meta:
533+
metadata[line[0]] = line[1]
534534
metadata["units"] = units
535535
setattr(df, "_metadata", metadata)
536536

0 commit comments

Comments
 (0)