File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ test-pytest: cleanup test-reports
103
103
$(QUIET )$(ECHO ) " $@ : Done."
104
104
105
105
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" ;
107
107
$(QUIET ) tests/check_spelling 2> /dev/null || true
108
108
$(QUIET )$(ECHO ) " $@ : Done."
109
109
Original file line number Diff line number Diff line change @@ -65,9 +65,9 @@ def NoOp(*args, **kwargs):
65
65
# More boiler-plate-code
66
66
67
67
68
- TASK_OPTIONS = dict ( { # skipcq: PTC-W0020
68
+ TASK_OPTIONS = { # skipcq: PTC-W0020
69
69
'noop' : NoOp
70
- })
70
+ }
71
71
"""The callable function tasks of this program."""
72
72
73
73
You can’t perform that action at this time.
0 commit comments