From: KingOfKaste <47917339+KingOfKaste@users.noreply.github.com> Date: Thu, 20 Feb 2025 19:27:25 +0000 (+0100) Subject: Fixed formatting X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c9ceffe8279f5d961a44e6d468f21881bcbc75c;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fixed formatting --- diff --git a/test/dialect/test_sqlite.py b/test/dialect/test_sqlite.py index 730bce1a14..ecb9510c93 100644 --- a/test/dialect/test_sqlite.py +++ b/test/dialect/test_sqlite.py @@ -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",