Skip to content

Commit 09f7168

Browse files
committed
Fix black formatter for Python 3.5
1 parent d8993d4 commit 09f7168

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
line-length = 120
3-
target_version = ['py37']
3+
target_version = ['py35', 'py36', 'py37', 'py38']
44
include = '\.pyi?$'
55
exclude = '''
66

pytracking/tracking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(
3333
include_default_metadata=False,
3434
encryption_bytestring_key=None,
3535
encoding="utf-8",
36-
**kwargs,
36+
**kwargs
3737
):
3838
"""
3939

0 commit comments

Comments
 (0)