From 2f021dd533e827d4b9aca00e88d3b329e223a3c9 Mon Sep 17 00:00:00 2001 From: Piotro Date: Sat, 28 Oct 2023 16:22:05 +0200 Subject: [PATCH] fix typing --- scripts/run_signature.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_signature.py b/scripts/run_signature.py index 8b7060ff5..833686cf3 100755 --- a/scripts/run_signature.py +++ b/scripts/run_signature.py @@ -16,7 +16,7 @@ def run_with_cocotb(test_name: str, traces: bool, output: str) -> bool: - arglist = ["make", "-C", parent + "/test/regression/cocotb", "-f", "signature.Makefile", "--no-print-directory"] + arglist = ["make", "-C", parent if parent else "" + "/test/regression/cocotb", "-f", "signature.Makefile", "--no-print-directory"] if os.path.isfile(output): os.remove(output)