From 1771db5a382e3e1e19dafc5347646dbcc5a5ff7c Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 22 Nov 2025 14:52:23 +0100 Subject: [PATCH] Manually apply ruff/flake8-implicit-str-concat rule ISC002 ISC002 Implicitly concatenated string literals over multiple lines --- testing/cffi0/test_ownlib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/cffi0/test_ownlib.py b/testing/cffi0/test_ownlib.py index 180a8864..8600c823 100644 --- a/testing/cffi0/test_ownlib.py +++ b/testing/cffi0/test_ownlib.py @@ -156,8 +156,8 @@ def setup_class(cls): if sys.maxsize > 2**32: arch = 'amd64' if os.path.isfile(vcvarsall): - cmd = '"%s" %s' % (vcvarsall, arch) + ' & cl.exe testownlib.c ' \ - ' /LD /Fetestownlib.dll' + cmd = '"%s" %s & cl.exe testownlib.c /LD /Fetestownlib.dll' % ( + vcvarsall, arch) subprocess.check_call(cmd, cwd = str(udir), shell=True) os.rename(f"{udir}\\testownlib.dll", dll_path) cls.module = dll_path