E21.py 323 B

12345678910111213141516
  1. #: E211:4
  2. spam (1)
  3. #: E211:4 E211:19
  4. dict ['key'] = list [index]
  5. #: E211:11
  6. dict['key'] ['subkey'] = list[index]
  7. # Okay
  8. spam(1)
  9. dict['key'] = list[index]
  10. # This is not prohibited by PEP8, but avoid it.
  11. # Dave: I think this is extremely stupid. Use the same convention everywhere.
  12. #: E211:9
  13. class Foo (Bar, Baz):
  14. pass