Skip to content

Commit 2d095f8

Browse files
Format code with black and isort (#44)
This commit fixes the style issues introduced in 34fe885 according to the output from black and isort. Details: https://deepsource.io/gh/AtomScott/SoccerTrack/transform/ba1386e0-f471-4159-8620-a000d16e741d/ Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
1 parent b501091 commit 2d095f8

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

setup.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from setuptools import find_packages, setup
2-
31
import os
4-
from setuptools import setup
2+
3+
from setuptools import find_packages, setup
54

65
with open("requirements.txt") as f:
76
required = f.read().splitlines()
@@ -16,8 +15,8 @@
1615
license="MIT",
1716
install_requires=required,
1817
entry_points={
19-
'console_scripts': [
20-
'soccertrack = soccertrack.cli:main',
18+
"console_scripts": [
19+
"soccertrack = soccertrack.cli:main",
2120
]
22-
}
21+
},
2322
)

0 commit comments

Comments
 (0)