Skip to content

Commit

Permalink
fix lint runs
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedElgammal authored and Nathan Shreve committed Aug 15, 2024
1 parent 73a30b1 commit 1168090
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vtr_flow/scripts/tuning_runs/control_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,9 @@ def generate_avg_seed_csv(full_res_csv_path, output_dir):
col_to_keep.extend(list(PARAMS_DICT.keys()))
col_to_keep.extend(PARSED_METRICS)
df = df.drop(
# pylint: disable=no-member
columns=[col for col in df.columns if col not in col_to_keep]
) # pylint: disable=no-member
)

# Check if '--seed' column is present
if "--seed" in df.columns:
Expand Down

0 comments on commit 1168090

Please sign in to comment.