duncanmmacleod/requests-ecp

View on GitHub
requests_ecp/ecp.py

Summary

Maintainability
A
0 mins
Test Coverage

Using etree to parse untrusted XML data is known to be vulnerable to XML attacks. Replace etree with the equivalent defusedxml package.
Open

from lxml import etree

Severity: Info
Found in requests_ecp/ecp.py by bandit

At least two spaces before inline comment
Open

</S:Envelope>""".strip(), # noqa
Severity: Minor
Found in requests_ecp/ecp.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