Skip to content

Commit 96c3352

Browse files
committed
Fix no-op isort command in github checks
1 parent 7c233a7 commit 96c3352

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Check imports are sorted
5151
run: |
5252
python -m pip install isort
53-
python -m isort --check-only
53+
python -m isort --check-only --recursive axelrod/.
5454
- name: Check that all strategies are indexed
5555
run: |
5656
python run_strategy_indexer.py

axelrod/tests/unit/test_makes_use_of.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class_makes_use_of,
88
makes_use_of,
99
makes_use_of_variant,
10-
method_makes_use_of
10+
method_makes_use_of,
1111
)
1212
from axelrod.strategy_transformers import final_sequence
1313

0 commit comments

Comments
 (0)