Marcello-Sega/pytim

View on GitHub
pytim/examples/example_profile.py

Summary

Maintainability
A
0 mins
Test Coverage

Indentation is not a multiple of 4 (comment)
Open

  #  utilities.center(u, oxygens)
Severity: Minor
Found in pytim/examples/example_profile.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

There are no issues that match your filters.

Category
Status