Skip to content

Commit 6bb5549

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e6f58dd commit 6bb5549

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/tests/conftest.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -150,9 +150,7 @@ async def create_table_for_listener_tests(
150150
) -> AsyncGenerator[None, None]:
151151
connection = await psql_pool.connection()
152152
await connection.execute(
153-
f"CREATE TABLE {listener_table_name}"
154-
f"(id SERIAL, payload VARCHAR(255),"
155-
f"channel VARCHAR(255), process_id INT)",
153+
f"CREATE TABLE {listener_table_name}(id SERIAL, payload VARCHAR(255),channel VARCHAR(255), process_id INT)",
156154
)
157155

158156
yield

0 commit comments

Comments
 (0)