Skip to content

Commit b6d861a

Browse files
committed
condense
1 parent b98b547 commit b6d861a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/vivarium_profiling/tools/run_benchmark.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ def create_results_directory(output_dir: str = ".") -> str:
4141
def initialize_results_file(results_dir: str, config: ExtractionConfig) -> str:
4242
"""Initialize the CSV results file with headers."""
4343
results_file = Path(results_dir) / RESULTS_SUMMARY_NAME
44-
columns = config.results_columns
45-
df = pd.DataFrame(columns=columns)
44+
df = pd.DataFrame(columns=config.results_columns)
4645
df.to_csv(results_file, index=False)
4746
return str(results_file)
4847

0 commit comments

Comments
 (0)