Skip to content

Commit

Permalink
error in line
Browse files Browse the repository at this point in the history
  • Loading branch information
paulf81 committed Oct 21, 2024
1 parent 47ce0c5 commit 166c939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flasc/utilities/tuner_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def replicate_nan_values(
common_columns = df_1.columns.intersection(df_2.columns)

# Remove the time column from the common columns if included
common_columns.drop("time", errors="ignore")
common_columns = common_columns.drop("time", errors="ignore")

# Use assign to create a new DataFrame with NaN values replaced
df_2_updated = df_2.assign(
Expand Down

0 comments on commit 166c939

Please sign in to comment.