]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fixing linting
authorzeeeeeb <5767468+zeeeeeb@users.noreply.github.com>
Sat, 12 Feb 2022 16:56:00 +0000 (08:56 -0800)
committerzeeeeeb <5767468+zeeeeeb@users.noreply.github.com>
Sat, 12 Feb 2022 16:56:00 +0000 (08:56 -0800)
test/dialect/postgresql/test_types.py

index efb33276d6aa2cd9bd398aaa6d2d94a53eaf59a1..a59dd0ac7e52ed0e348ef088783a73df76d9e8fb 100644 (file)
@@ -133,7 +133,8 @@ class FloatCoercionTest(fixtures.TablesTest, AssertsExecutionResults):
         )
         metadata.create_all(connection)
         connection.execute(
-            t1.insert(), dict(x=[5], y=[5], z=[6], w=[7], q=[decimal.Decimal("6.4")])
+            t1.insert(),
+            dict(x=[5], y=[5], z=[6], w=[7], q=[decimal.Decimal("6.4")]),
         )
         row = connection.execute(t1.select()).first()
         eq_(row, ([5], [5], [6], [7], [decimal.Decimal("6.4")]))
@@ -150,7 +151,8 @@ class FloatCoercionTest(fixtures.TablesTest, AssertsExecutionResults):
         )
         metadata.create_all(connection)
         connection.execute(
-            t1.insert(), dict(x=[5], y=[5], z=[6], w=[7], q=[decimal.Decimal("6.4")])
+            t1.insert(),
+            dict(x=[5], y=[5], z=[6], w=[7], q=[decimal.Decimal("6.4")]),
         )
         row = connection.execute(t1.select()).first()
         eq_(row, ([5], [5], [6], [7], [decimal.Decimal("6.4")]))