Skip to content
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

Flake8 Fixes (Part1) #1550

Merged
merged 22 commits into from
Oct 19, 2021
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
W292 no newline at end of file (fixed)
Jianjie Liu committed Oct 15, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 45f179b1cf0e1e9b4f08b3df9773d783437470fe
2 changes: 0 additions & 2 deletions recommenders/tuning/nni/nni_utils.py
Original file line number Diff line number Diff line change
@@ -153,5 +153,3 @@ def start_nni(config_path, wait=WAITING_TIME, max_retries=MAX_RETRIES):
if proc.returncode != 0:
raise RuntimeError("'nnictl create' failed with code %d" % proc.returncode)
check_experiment_status(wait=wait, max_retries=max_retries)


2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -83,7 +83,7 @@ skip_empty = true
ignore =
# Simple style issues (deletion/addition)
; W291 # trailing whitespace (done)
W292 # no newline at end of file
; W292 # no newline at end of file (done)
W503 # line break before binary operator
W391 # blank line at end of file
W293 # blank line contains whitespace