Skip to content

Commit 14cd475

Browse files
[STYLE] Style fixes (- WIP PR #76 -)
1 parent 9e14da5 commit 14cd475

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ test-pytest: cleanup test-reports
103103
$(QUIET)$(ECHO) "$@: Done."
104104

105105
test-style: cleanup
106-
$(QUIET)$(PYTHON) -m flake8 --ignore=W191,W391 --max-line-length=100 --verbose --count --config=.flake8.ini --show-source || DO_FAIL="exit 2" ;
106+
$(QUIET)python3 -m flake8 --ignore=W191,W391 --max-line-length=100 --verbose --count --config=.flake8.ini --show-source || DO_FAIL="exit 2" ;
107107
$(QUIET)tests/check_spelling 2>/dev/null || true
108108
$(QUIET)$(ECHO) "$@: Done."
109109

pythonrepo/pythonrepo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ def NoOp(*args, **kwargs):
6565
# More boiler-plate-code
6666

6767

68-
TASK_OPTIONS = dict({ # skipcq: PTC-W0020
68+
TASK_OPTIONS = { # skipcq: PTC-W0020
6969
'noop': NoOp
70-
})
70+
}
7171
"""The callable function tasks of this program."""
7272

7373

0 commit comments

Comments
 (0)