Skip to content

Commit 4eb70ad

Browse files
committed
fix python lint
1 parent 1bcace2 commit 4eb70ad

File tree

1 file changed

+3
-2
lines changed
  • vtr_flow/scripts/python_libs/vtr

1 file changed

+3
-2
lines changed

vtr_flow/scripts/python_libs/vtr/util.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,9 +459,10 @@ def argparse_use_previous(inp: str) -> List[Tuple[str, List]]:
459459
if not r:
460460
raise argparse.ArgumentError(None, "Invalid input to -use_previous: %s" % w)
461461
if not REUSABLE_FILES.get(r.group(2)):
462-
raise argparse.ArgumentError(None,
462+
raise argparse.ArgumentError(
463+
None,
463464
"Unknown file type to use_previous: %s, available types: %s"
464-
% (r.group(2), ",".join(REUSABLE_FILES.keys()))
465+
% (r.group(2), ",".join(REUSABLE_FILES.keys())),
465466
)
466467
out.append((r.group(1), REUSABLE_FILES[r.group(2)]))
467468

0 commit comments

Comments
 (0)