summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-04-11 14:23:29 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-04-11 14:23:29 -0400
commit17413bbf10c3b993d343c28035713a23c745712c (patch)
tree61c126a4101874d671288396c2dbf9432e3e86fc /lib/sqlalchemy/dialects/postgresql
parent53c65ed93ade1fc99c75e1f0bf055cd129596c06 (diff)
downloadsqlalchemy-17413bbf10c3b993d343c28035713a23c745712c.tar.gz
Black updates
Updating for a few black adjustments Change-Id: I9c8abadd1ccd6173e6d68dd62f14cec208cc304a
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/psycopg2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
index fb127f1c7..f7c5f668b 100644
--- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py
+++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py
@@ -776,7 +776,7 @@ class PGDialect_psycopg2(PGDialect):
else:
# no connection arguments whatsoever; psycopg2.connect()
# requires that "dsn" be present as a blank string.
- return ([''], opts)
+ return ([""], opts)
def is_disconnect(self, e, connection, cursor):
if isinstance(e, self.dbapi.Error):