Skip to content

Commit

Permalink
Data clean up for networks/tenant
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasTurner23 committed Dec 3, 2024
1 parent 5f96b88 commit bbe4341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workflows/airqo_etl_utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def populate_missing_columns(
for column in columns:
if column not in data_cols:
print(f"{column} missing in dataset")
data.loc[column] = None
data[column] = None
return data

@staticmethod
Expand Down

0 comments on commit bbe4341

Please sign in to comment.