diff options
| author | Lucas Cimon <lucas.cimon@gmail.com> | 2018-10-10 19:56:25 +0200 |
|---|---|---|
| committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-10-10 20:56:25 +0300 |
| commit | fcc01516ae176ad3fdedc4497328105f3314e376 (patch) | |
| tree | ff912ba3ca5640e5f782a62d3a3765754ae5ced4 /pylint/checkers/newstyle.py | |
| parent | 04cf3f8298fa1c718f950c90c34ee99a17f3c503 (diff) | |
| download | pylint-git-fcc01516ae176ad3fdedc4497328105f3314e376.tar.gz | |
Adding implicit-str-concat-in-sequence check (#1655)
``implicit-str-concat-in-sequence`` detects string concatenation inside lists, sets & tuples.
It would warn on code such as `('a', 'b' 'c')`.
Diffstat (limited to 'pylint/checkers/newstyle.py')
| -rw-r--r-- | pylint/checkers/newstyle.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/newstyle.py b/pylint/checkers/newstyle.py index 0da6a5228..89d31653b 100644 --- a/pylint/checkers/newstyle.py +++ b/pylint/checkers/newstyle.py @@ -31,7 +31,7 @@ MSGS = { "E1004": ( "Missing argument to super()", "missing-super-argument", - "Used when the super builtin didn't receive an " "argument.", + "Used when the super builtin didn't receive an argument.", {"maxversion": (3, 0)}, ), } |
