From 748bf710fdeeed327933a5e7c277c7f79f6053a6 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Wed, 1 Jan 2020 10:51:15 -0500 Subject: 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 --- lib/sqlalchemy/testing/engines.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/sqlalchemy/testing') diff --git a/lib/sqlalchemy/testing/engines.py b/lib/sqlalchemy/testing/engines.py index acc888933..d5a49af87 100644 --- a/lib/sqlalchemy/testing/engines.py +++ b/lib/sqlalchemy/testing/engines.py @@ -303,9 +303,7 @@ def mock_engine(dialect_name=None): d = engine.dialect return "\n".join(str(s.compile(dialect=d)) for s in engine.mock) - engine = create_mock_engine( - dialect_name + "://", executor - ) + engine = create_mock_engine(dialect_name + "://", executor) assert not hasattr(engine, "mock") engine.mock = buffer engine.assert_sql = assert_sql -- cgit v1.2.1