1 2 3 4 5 6 7 8 9 10 11 12 13 14
#: E211 spam (1) #: E211 dict ['key'] = list [index] #: E211 dict['key'] ['subkey'] = list[index] #: Okay spam(1) dict['key'] = list[index] # This is not prohibited by PEP8, but avoid it. class Foo (Bar, Baz): pass