ANSSI-FR/polichombr

View on GitHub
examples/import_idb.py

Summary

Maintainability
A
0 mins
Test Coverage

TODO found
Open

                # TODO: check for automatic names
Severity: Minor
Found in examples/import_idb.py by fixme

Line too long (95 > 79 characters)
Open

        This script uses the python-idb tool from https://github.com/williballenthin/python-idb
Severity: Minor
Found in examples/import_idb.py by pep8

Limit all lines to a maximum of 79 characters.

There are still many devices around that are limited to 80 character
lines; plus, limiting windows to 80 characters makes it possible to
have several windows side-by-side.  The default wrapping on such
devices looks ugly.  Therefore, please limit all lines to a maximum
of 79 characters. For flowing long blocks of text (docstrings or
comments), limiting the length to 72 characters is recommended.

Reports error E501.

Block comment should start with '# '
Open

        #self.upload_comments()
Severity: Minor
Found in examples/import_idb.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