From 4da930cae49d1b899f642f93383c180261ad6de1 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 28 Aug 2021 08:12:57 -0700 Subject: [PATCH] squash a Pylint line-too-long warning --- ci/build_windows.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/build_windows.py b/ci/build_windows.py index fffb32bc5..c74fa0a6a 100644 --- a/ci/build_windows.py +++ b/ci/build_windows.py @@ -34,7 +34,8 @@ def main(args: List[str]) -> int: #pylint: disable=C0116 if build.exists(): shutil.rmtree(build) os.makedirs(build) - run(["cmake", "-G", "Visual Studio 16 2019", "-A", options.platform, "-D", "with_cxx_api=ON", ".."], + run(["cmake", "-G", "Visual Studio 16 2019", "-A", options.platform, "-D", + "with_cxx_api=ON", ".."], build) run(["cmake", "--build", ".", "--config", options.configuration], build) run(["cpack", "-C", options.configuration], build) -- 2.40.0