Fix Python codestyle: remove whitespace from blank line

Co-Authored-By: Daniel <daniel@neon.tech>
This commit is contained in:
Devin AI
2025-06-26 15:35:58 +00:00
parent 1cf6eea861
commit 7610702026

View File

@@ -1002,7 +1002,7 @@ def test_fast_import_event_triggers(
res = conn.safe_psql("SELECT count(*) FROM pg_event_trigger;")
log.info(f"Result: {res}")
assert res[0][0] == 1, f"Expected 1 event trigger to be imported, got: {res[0][0]}"
conn.safe_psql("CREATE TABLE test_drop_table (id int);")
conn.safe_psql("DROP TABLE test_drop_table;")