From 4a98cc94581236c97b8d6131fb9f991465b49452 Mon Sep 17 00:00:00 2001 From: whitequark Date: Sat, 3 Aug 2019 22:52:58 +0000 Subject: [PATCH] build.run: use keyword-only arguments where appropriate. --- nmigen/build/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmigen/build/run.py b/nmigen/build/run.py index 14409c9..c512b1f 100644 --- a/nmigen/build/run.py +++ b/nmigen/build/run.py @@ -43,7 +43,7 @@ class BuildPlan: for filename in sorted(self.files): archive.writestr(zipfile.ZipInfo(filename), self.files[filename]) - def execute_local(self, root="build", run_script=True): + def execute_local(self, root="build", *, run_script=True): """ Execute build plan using the local strategy. Files from the build plan are placed in the build root directory ``root``, and, if ``run_script`` is ``True``, the script -- 2.30.2