summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith.r@gmail.com>2022-01-10 13:02:05 -0800
committerGitHub <noreply@github.com>2022-01-10 13:02:05 -0800
commitd86db8fbf2c290fc63a1279688ee6e8141e02e93 (patch)
treead947b5eb1b53725da4a49d734c689c28350f50c
parentbcb19d4a7ccc2a3f92e59e31f27faebf83451510 (diff)
Missing comma.amjith-patch-1
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d90bcd2..abcf52b 100755
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ description = 'CLI for MySQL Database. With auto-completion and syntax highlight
install_requirements = [
'click >= 7.0',
'cryptography >= 1.0.0',
- 'Pygments>=1.6,<=2.11.1'
+ 'Pygments>=1.6,<=2.11.1',
'prompt_toolkit>=3.0.6,<4.0.0',
'PyMySQL >= 0.9.2',
'sqlparse>=0.3.0,<0.5.0',