Skip to content

Commit 2f00b1c

Browse files
committed
linter fix
1 parent 3dae1a4 commit 2f00b1c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tests/datetime_test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,7 @@ def test_time(session):
252252
session.execute(sa.text("REFRESH TABLE foobar"))
253253

254254
# query
255-
result = (
256-
session.execute(sa.select(FooBar.name, FooBar.time)).mappings().first()
257-
)
255+
result = session.execute(sa.select(FooBar.name, FooBar.time)).mappings().first()
258256

259257
# compare
260258
assert result["time"] == dt.time(19, 0, 30, 123456)

0 commit comments

Comments
 (0)