Skip to content

Commit 611d1e8

Browse files
author
Tony Crisci
committed
makefile: use python module caller
1 parent f54e2c5 commit 611d1e8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
source_dirs = dbus_next test examples
55

66
lint:
7-
flake8 $(source_dirs)
7+
python3 -m flake8 $(source_dirs)
88

99
check: lint
10-
yapf -rdp $(source_dirs)
10+
python3 -m yapf -rdp $(source_dirs)
1111

1212
format:
13-
yapf -rip $(source_dirs)
13+
python3 -m yapf -rip $(source_dirs)
1414

1515
test:
1616
for py in python3.6 python3.7 python3.9 python3.8 ; do \

0 commit comments

Comments
 (0)