aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorWolfgang Müller2021-05-05 20:55:35 +0200
committerWolfgang Müller2021-05-05 20:55:35 +0200
commita616b6a0488b90eb5e293f7ab573559f258b038c (patch)
treee9db15838a7d2a625bdc190f267dca781a137406
parent02abc1e2b93c777264f92fe8f919969cc16681a4 (diff)
downloadquarg-a616b6a0488b90eb5e293f7ab573559f258b038c.tar.gz
setup.py: Add comma to final block
This will make sure that we will not run into errors caused by an omission of a comma should sections ever be moved around in the future.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 3d3800f..055c344 100644
--- a/setup.py
+++ b/setup.py
@@ -18,5 +18,5 @@ setuptools.setup(
install_requires=[
'python-dateutil>=2.8.1',
'sqlalchemy>=1.4',
- ]
+ ],
)