Skip to content

Commit 1d8ce57

Browse files
Remove python version command on black
1 parent 24edd91 commit 1d8ce57

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
black = black -S -l 120 --target-version py38
1+
black = black -S -l 120
22

33
.PHONY: install
44
install:

testing/testapp/tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
if DJANGO_VERSION >= (4, 0):
99
FIXTURES_DIR = 'fixtures_40'
10-
elif DJANGO_VERSION >= (3, 0):
10+
else:
11+
assert DJANGO_VERSION >= (3, 0)
1112
FIXTURES_DIR = 'fixtures_30'
1213

1314

0 commit comments

Comments
 (0)