diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-01-01 10:51:15 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-01-01 11:11:24 -0500 |
commit | 748bf710fdeeed327933a5e7c277c7f79f6053a6 (patch) | |
tree | 292759e2bc75732a965cdf544abfb98b787bbd6a /lib/sqlalchemy/dialects/mysql/oursql.py | |
parent | 4e7c789331c9ccf86ad0040175764d361d21b4f3 (diff) | |
download | sqlalchemy-748bf710fdeeed327933a5e7c277c7f79f6053a6.tar.gz |
Source base cleanups
in trying to apply 2020 copyright to files, the pre-commit
hooks complain about random file issues.
- remove old corrections.py utility, this had something to do
with repairing refs in the sphinx docs
- run pre commit hooks on all files
- formatting adjustments to work around code formatting collisions
(long import lines that zimports can't rewrite correctly)
Change-Id: I260744866f69e902eb93665c7c728ee94d3371a2
Diffstat (limited to 'lib/sqlalchemy/dialects/mysql/oursql.py')
-rw-r--r-- | lib/sqlalchemy/dialects/mysql/oursql.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/oursql.py b/lib/sqlalchemy/dialects/mysql/oursql.py index 1c319f4f2..ee6c0b59c 100644 --- a/lib/sqlalchemy/dialects/mysql/oursql.py +++ b/lib/sqlalchemy/dialects/mysql/oursql.py @@ -181,9 +181,9 @@ class MySQLDialect_oursql(MySQLDialect): ): return MySQLDialect._show_create_table( self, - connection.connect( - close_with_result=True - ).execution_options(_oursql_plain_query=True), + connection.connect(close_with_result=True).execution_options( + _oursql_plain_query=True + ), table, charset, full_name, |