]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fixed formatting
authorKingOfKaste <47917339+KingOfKaste@users.noreply.github.com>
Thu, 20 Feb 2025 19:27:25 +0000 (20:27 +0100)
committerKingOfKaste <47917339+KingOfKaste@users.noreply.github.com>
Thu, 20 Feb 2025 19:27:25 +0000 (20:27 +0100)
test/dialect/test_sqlite.py

index 730bce1a145218e89425eb51bce3db596ed5c0f4..ecb9510c937078ec8b8f18654c60e574f7a54f49 100644 (file)
@@ -1155,7 +1155,13 @@ class SQLTest(fixtures.TestBase, AssertsCompiledSQL):
 
     def test_create_table_without_rowid_strict(self):
         m = MetaData()
-        table = Table("atable", m, Column("id", Integer), sqlite_with_rowid=False, sqlite_strict=True)
+        table = Table(
+            "atable",
+            m,
+            Column("id", Integer),
+            sqlite_with_rowid=False,
+            sqlite_strict=True,
+        )
         self.assert_compile(
             schema.CreateTable(table),
             "CREATE TABLE atable (id INTEGER) WITHOUT ROWID, STRICT",