We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bcace2 commit 4eb70adCopy full SHA for 4eb70ad
vtr_flow/scripts/python_libs/vtr/util.py
@@ -459,9 +459,10 @@ def argparse_use_previous(inp: str) -> List[Tuple[str, List]]:
459
if not r:
460
raise argparse.ArgumentError(None, "Invalid input to -use_previous: %s" % w)
461
if not REUSABLE_FILES.get(r.group(2)):
462
- raise argparse.ArgumentError(None,
+ raise argparse.ArgumentError(
463
+ None,
464
"Unknown file type to use_previous: %s, available types: %s"
- % (r.group(2), ",".join(REUSABLE_FILES.keys()))
465
+ % (r.group(2), ",".join(REUSABLE_FILES.keys())),
466
)
467
out.append((r.group(1), REUSABLE_FILES[r.group(2)]))
468
0 commit comments