emilyhorsman/socialauth

View on GitHub
setup.py

Summary

Maintainability
A
0 mins
Test Coverage

Over-indented
Open

        long_description = f.read()
Severity: Minor
Found in setup.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