mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-07 05:14:29 +08:00
17 lines
323 B
Python
17 lines
323 B
Python
#: E211:4
|
|
spam (1)
|
|
#: E211:4 E211:19
|
|
dict ['key'] = list [index]
|
|
#: E211:11
|
|
dict['key'] ['subkey'] = list[index]
|
|
# Okay
|
|
spam(1)
|
|
dict['key'] = list[index]
|
|
|
|
|
|
# This is not prohibited by PEP8, but avoid it.
|
|
# Dave: I think this is extremely stupid. Use the same convention everywhere.
|
|
#: E211:9
|
|
class Foo (Bar, Baz):
|
|
pass
|