]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
using pre-commit to lint this time 9134/head
authorShan <shan224@gmail.com>
Sun, 22 Jan 2023 07:01:51 +0000 (23:01 -0800)
committerShan <shan224@gmail.com>
Sun, 22 Jan 2023 07:01:51 +0000 (23:01 -0800)
test/dialect/mssql/test_reflection.py

index e54337b93177464d97616f0a417ba4d2280e387c..570f25f84b3dc3d2e5d52e4ec239fcd400321186 100644 (file)
@@ -420,10 +420,7 @@ class ReflectionTest(fixtures.TestBase, ComparesTables, AssertsCompiledSQL):
     ):
         # Addresses bug #9133
         tt = Table(
-            'test',
-            metadata,
-            Column("id", Integer),
-            schema=schema_value
+            "test", metadata, Column("id", Integer), schema=schema_value
         )
         tt.create(connection)
         found_it = inspect(connection).has_table("test", schema=schema_value)