Pattern: Implicitly concatenated string literal
Issue: -
String literals are implicitly concatenated in a literal iterable definition.
Example of incorrect code:
TEST_LIST = ['a' 'b'] # [implicit-str-concat]
Example of correct code:
# No warning for bytes
TEST_LIST = [b'A' b'B']