Skip to content

Commit ed667d7

Browse files
committed
Fix python formatting
Signed-off-by: Jeff Goeders <jeff.goeders@gmail.com>
1 parent 38dc32d commit ed667d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vtr_flow/scripts/python_libs/vtr/parse_vtr_task.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -482,9 +482,9 @@ def summarize_qor(configs, alt_tasks_dir=None):
482482
)
483483
with out_file.open("w+") as out:
484484
for config in configs:
485-
with (
486-
Path(find_latest_run_dir(config, alt_tasks_dir)) / QOR_PARSE_FILE
487-
).open("r") as in_file:
485+
with (Path(find_latest_run_dir(config, alt_tasks_dir)) / QOR_PARSE_FILE).open(
486+
"r"
487+
) as in_file:
488488
headers = in_file.readline()
489489
if first:
490490
print("task_name \t{}".format(headers), file=out, end="")

0 commit comments

Comments
 (0)