All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Two adjacent string constants are found on the same line that are being concatenated. However, this is usually a typo, and some separator is missing.
a = ['Hello' 'world']
a = ['Hello', 'world'] # OR a = ['HelloWorld']