Skip to content

Conversation

@DimitriPapadopoulos
Copy link
Contributor

ISC002 Implicitly concatenated string literals over multiple lines

ISC002 Implicitly concatenated string literals over multiple lines
cmd = '"%s" %s' % (vcvarsall, arch) + ' & cl.exe testownlib.c ' \
' /LD /Fetestownlib.dll'
cmd = '"%s" %s & cl.exe testownlib.c /LD /Fetestownlib.dll' % (
vcvarsall, arch)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe nicer as an f-string, after #214 and #124

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed, but I wanted to apply this #214. I'll rebase after the first PR is applied, whichever it is.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants