sugarlabs / turtleart-activity

A block-based Logo programming environment
MIT License
18 stars 54 forks source link

PEP8 Linting #48

Closed kipply closed 6 years ago

kipply commented 6 years ago

Ran autopep8 on all the files.

Since some imports are conditional, E402 (where not all imports are at the top of the file) is ignored.

quozl commented 6 years ago

Not reviewed, but a comment; you might also add a .flake8 file;

[flake8]

# E402 module level import not at top of file
# gi.require_version() is required before later imports

ignore = E402
kipply commented 6 years ago

@quozl Thanks! Done, though I added it to the setup.cfg to avoid extra files.