mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
a001b03854
Also, update to latest upstream version. Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
15 lines
226 B
Python
15 lines
226 B
Python
#: E211
|
|
spam (1)
|
|
#: E211 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
|