Skip to content

Commit 6f1c3e4

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

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/tests/conftest.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,7 @@ async def create_table_for_listener_tests(
148148
listener_table_name: str,
149149
) -> AsyncGenerator[None, None]:
150150
await psql_pool.execute(
151-
f"CREATE TABLE {listener_table_name}"
152-
f"(id SERIAL, payload VARCHAR(255),"
153-
f"channel VARCHAR(255), process_id INT)",
151+
f"CREATE TABLE {listener_table_name}(id SERIAL, payload VARCHAR(255),channel VARCHAR(255), process_id INT)",
154152
)
155153

156154
yield

0 commit comments

Comments
 (0)