Skip to content

Commit b6023a0

Browse files
Manually apply ruff/flake8-implicit-str-concat rule ISC002
ISC002 Implicitly concatenated string literals over multiple lines
1 parent 7617182 commit b6023a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

testing/cffi0/test_ownlib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ def setup_class(cls):
156156
if sys.maxsize > 2**32:
157157
arch = 'amd64'
158158
if os.path.isfile(vcvarsall):
159-
cmd = '"%s" %s' % (vcvarsall, arch) + ' & cl.exe testownlib.c ' \
160-
' /LD /Fetestownlib.dll'
159+
cmd = '"%s" %s & cl.exe testownlib.c /LD /Fetestownlib.dll' % (
160+
vcvarsall, arch)
161161
subprocess.check_call(cmd, cwd = str(udir), shell=True)
162162
os.rename(f"{udir}\\testownlib.dll", dll_path)
163163
cls.module = dll_path

0 commit comments

Comments
 (0)