From: whitequark Date: Sat, 3 Aug 2019 22:52:58 +0000 (+0000) Subject: build.run: use keyword-only arguments where appropriate. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4a98cc94581236c97b8d6131fb9f991465b49452;p=nmigen.git build.run: use keyword-only arguments where appropriate. --- 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