Skip to content

Commit

Permalink
try fixing lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedElgammal committed Aug 12, 2024
1 parent 70acb71 commit 58e1f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vtr_flow/scripts/tuning_runs/control_runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def parse_script_params(script_params):

def generate_avg_seed_csv(full_res_csv_path, output_dir):
"""Generate the average results over the seeds"""
df = pd.read_csv(full_res_csv_path)
df: Optional[pd.DataFrame] = pd.read_csv(full_res_csv_path)
assert isinstance(df, pd.DataFrame)

if KEEP_METRICS_ONLY:
Expand Down

0 comments on commit 58e1f6b

Please sign in to comment.