Skip to content

Commit ece92a8

Browse files
committed
adjusted val cols
1 parent cd99bf9 commit ece92a8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/webapp/validation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,9 @@ def validate_dataset(
191191
}
192192
df.columns = [normalize_col(c) for c in df.columns]
193193
df = rename_columns_to_match_schema(df, canon_to_aliases)
194-
df.columns = [normalize_col(c) for c in df.columns] # Final normalization after renaming
194+
df.columns = [
195+
normalize_col(c) for c in df.columns
196+
] # Final normalization after renaming
195197

196198
incoming = set(df.columns)
197199

0 commit comments

Comments
 (0)