From 5c68419e5aee2e27bf21a8ac9eb5950d196c77e5 Mon Sep 17 00:00:00 2001 From: zeeeeeb <5767468+zeeeeeb@users.noreply.github.com> Date: Sat, 12 Feb 2022 08:56:00 -0800 Subject: [PATCH] fixing linting --- test/dialect/postgresql/test_types.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index efb33276d6..a59dd0ac7e 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -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")])) -- 2.47.3