-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix PEP-8 violations reported by flake8 on test/benchmark folder #1000
Fix PEP-8 violations reported by flake8 on test/benchmark folder #1000
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Added few comments.
We also need to rebase (merge master into your branch) and add the fixed files to be checked by flake8.
test/benchmark/params_examples.py
Outdated
@@ -3,24 +3,28 @@ | |||
|
|||
from __future__ import (absolute_import, division, print_function) | |||
|
|||
import os | |||
import os # noqa F401 unused import |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason why not to remove this import if it's unused?
test/benchmark/subdir/time_subdir.py
Outdated
@@ -1,4 +1,4 @@ | |||
import time | |||
import time # noqa F401 unused import |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
test/benchmark/timeraw_examples.py
Outdated
import inspect # Checked below. # noqa F401 unused import | ||
import sys # noqa F401 unused import |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @LucyJimenez, looks great, ping me om green.
Check flake8 and fix pep8 issues related on :