Skip to content

Commit 58f374a

Browse files
committed
Lower Black target version to workaround Black bug
1 parent d26c616 commit 58f374a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
style:
44
isort -rc debug_toolbar example tests
5-
black --target-version py35 debug_toolbar example tests setup.py
5+
black --target-version=py34 debug_toolbar example tests setup.py
66
flake8 debug_toolbar example tests
77

88
style_check:
99
isort -rc -c debug_toolbar example tests
10-
black --target-version py35 --check debug_toolbar example tests setup.py
10+
black --target-version=py34 --check debug_toolbar example tests setup.py
1111

1212
flake8:
1313
flake8 debug_toolbar example tests

debug_toolbar/panels/cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def _store_call_info(
180180
trace=None,
181181
template_info=None,
182182
backend=None,
183-
**kw,
183+
**kw
184184
):
185185
if name == "get":
186186
if return_value is None:

0 commit comments

Comments
 (0)