explicit-string-concatenation (ISC003)
Added in v0.0.201 · Related issues · View source
Derived from the flake8-implicit-str-concat linter.
Fix is always available.
What it does
Checks for string literals that are explicitly concatenated (using the
+ operator).
Why is this bad?
For string literals that wrap across multiple lines, implicit string
concatenation within parentheses is preferred over explicit
concatenation using the + operator, as the former is more readable.
Example
Use instead: