diff options
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/_psycopg_common.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/base.py | 2 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/ext.py | 4 | ||||
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/psycopg2.py | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/_psycopg_common.py b/lib/sqlalchemy/dialects/postgresql/_psycopg_common.py index 265d8617e..7f936fefb 100644 --- a/lib/sqlalchemy/dialects/postgresql/_psycopg_common.py +++ b/lib/sqlalchemy/dialects/postgresql/_psycopg_common.py @@ -114,7 +114,7 @@ class _PGDialect_common_psycopg(PGDialect): client_encoding=None, use_native_hstore=True, use_native_uuid=True, - **kwargs + **kwargs, ): PGDialect.__init__(self, **kwargs) if not use_native_hstore: diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 869e48bd4..107288a73 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -3935,7 +3935,7 @@ class PGDialect(default.DefaultDialect): table_name, schema=None, postgresql_ignore_search_path=False, - **kw + **kw, ): preparer = self.identifier_preparer table_oid = self.get_table_oid( diff --git a/lib/sqlalchemy/dialects/postgresql/ext.py b/lib/sqlalchemy/dialects/postgresql/ext.py index e323da8be..1eabed403 100644 --- a/lib/sqlalchemy/dialects/postgresql/ext.py +++ b/lib/sqlalchemy/dialects/postgresql/ext.py @@ -221,7 +221,7 @@ class ExcludeConstraint(ColumnCollectionConstraint): *columns, name=kw.get("name"), deferrable=kw.get("deferrable"), - initially=kw.get("initially") + initially=kw.get("initially"), ) self.using = kw.get("using", "gist") where = kw.get("where") @@ -258,7 +258,7 @@ class ExcludeConstraint(ColumnCollectionConstraint): deferrable=self.deferrable, initially=self.initially, where=self.where, - using=self.using + using=self.using, ) c.dispatch._update(self.dispatch) return c diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py index 0bbad3257..d670d1a50 100644 --- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py +++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py @@ -558,7 +558,7 @@ class PGDialect_psycopg2(_PGDialect_common_psycopg): executemany_mode="values_only", executemany_batch_page_size=100, executemany_values_page_size=1000, - **kwargs + **kwargs, ): _PGDialect_common_psycopg.__init__(self, **kwargs) @@ -737,7 +737,7 @@ class PGDialect_psycopg2(_PGDialect_common_psycopg): parameters, template=executemany_values, fetch=bool(context.compiled.returning), - **kwargs + **kwargs, ) elif self.executemany_mode & EXECUTEMANY_BATCH: |