We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd99bf9 commit ece92a8Copy full SHA for ece92a8
1 file changed
src/webapp/validation.py
@@ -191,7 +191,9 @@ def validate_dataset(
191
}
192
df.columns = [normalize_col(c) for c in df.columns]
193
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
+ df.columns = [
195
+ normalize_col(c) for c in df.columns
196
+ ] # Final normalization after renaming
197
198
incoming = set(df.columns)
199
0 commit comments