diff options
author | Wolfgang Müller | 2021-05-05 20:55:35 +0200 |
---|---|---|
committer | Wolfgang Müller | 2021-05-05 20:55:35 +0200 |
commit | a616b6a0488b90eb5e293f7ab573559f258b038c (patch) | |
tree | e9db15838a7d2a625bdc190f267dca781a137406 | |
parent | 02abc1e2b93c777264f92fe8f919969cc16681a4 (diff) | |
download | quarg-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.
Diffstat (limited to '')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,5 +18,5 @@ setuptools.setup( install_requires=[ 'python-dateutil>=2.8.1', 'sqlalchemy>=1.4', - ] + ], ) |