Skip to content

Commit

Permalink
Fix number of args when calling
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienPeloton committed Dec 9, 2024
1 parent d02c323 commit 1f3fc2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/index_archival.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ def main():
data = data.drop("year").drop("month").drop("day")

# Check all columns exist, fill if necessary, and cast data
df_flat, cols_i, cols_d, cols_b = bring_to_current_schema(data)
df_flat, cols_i, cols_d = bring_to_current_schema(data)

# Assign each column to a specific column family
# This is independent from the final structure
cf = assign_column_family_names(df_flat, cols_i, cols_d, cols_b)
cf = assign_column_family_names(df_flat, cols_i, cols_d)

# Restrict the input DataFrame to the subset of wanted columns,
# except for tables containing uppervalid & upper limit data
Expand Down

0 comments on commit 1f3fc2c

Please sign in to comment.