amey-sam/Flask-MailGun

View on GitHub
tests/test_receve.py

Summary

Maintainability
A
0 mins
Test Coverage

Whitespace before '('
Open

        print ("received 100 emails")
Severity: Minor
Found in tests/test_receve.py by pep8

Avoid extraneous whitespace.

Avoid extraneous whitespace in the following situations:
- before the open parenthesis that starts the argument list of a
  function call.
- before the open parenthesis that starts an indexing or slicing.

Okay: spam(1)
E211: spam (1)

Okay: dict['key'] = list[index]
E211: dict ['key'] = list[index]
E211: dict['key'] = list [index]

Whitespace before '('
Open

        print ("received 2 emails")
Severity: Minor
Found in tests/test_receve.py by pep8

Avoid extraneous whitespace.

Avoid extraneous whitespace in the following situations:
- before the open parenthesis that starts the argument list of a
  function call.
- before the open parenthesis that starts an indexing or slicing.

Okay: spam(1)
E211: spam (1)

Okay: dict['key'] = list[index]
E211: dict ['key'] = list[index]
E211: dict['key'] = list [index]

Whitespace before '('
Open

        print ("received email")
Severity: Minor
Found in tests/test_receve.py by pep8

Avoid extraneous whitespace.

Avoid extraneous whitespace in the following situations:
- before the open parenthesis that starts the argument list of a
  function call.
- before the open parenthesis that starts an indexing or slicing.

Okay: spam(1)
E211: spam (1)

Okay: dict['key'] = list[index]
E211: dict ['key'] = list[index]
E211: dict['key'] = list [index]

There are no issues that match your filters.

Category
Status