rosedu/wouso

View on GitHub
wouso/games/qotd/feeds.py

Summary

Maintainability
A
0 mins
Test Coverage

Blank line at end of file
Open

Severity: Minor
Found in wouso/games/qotd/feeds.py by pep8

Trailing blank lines are superfluous.

Okay: spam(1)
W391: spam(1)\n

However the last line should end with a new line (warning W292).

Block comment should start with '# '
Open

        #return Question.objects.order_by('-date')[:5]
Severity: Minor
Found in wouso/games/qotd/feeds.py by pep8

Separate inline comments by at least two spaces.

An inline comment is a comment on the same line as a statement.
Inline comments should be separated by at least two spaces from the
statement. They should start with a # and a single space.

Each line of a block comment starts with a # and a single space
(unless it is indented text inside the comment).

Okay: x = x + 1  # Increment x
Okay: x = x + 1    # Increment x
Okay: # Block comment
E261: x = x + 1 # Increment x
E262: x = x + 1  #Increment x
E262: x = x + 1  #  Increment x
E265: #Block comment
E266: ### Block comment

There are no issues that match your filters.

Category
Status