Skip to content

Commit ed90ded

Browse files
committed
Ruff format
1 parent 2a2a8b4 commit ed90ded

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/fast/api/test_connection_close.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ def test_open_and_exit(self):
3131
# This exception does not get swallowed by DuckDBPyConnection's __exit__
3232
raise TypeError()
3333

34-
3534
def test_reopen_connection(self, duckdb_cursor):
3635
with tempfile.NamedTemporaryFile(delete=False) as tmp:
3736
db = tmp.name

tests/fast/test_filesystem.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,9 @@ def test_copy_partition(self, duckdb_cursor: DuckDBPyConnection, memory: fsspec.
191191

192192
assert memory.open("/root/a=1/data_0.csv").read() == b"2\n"
193193

194-
def test_copy_partition_with_columns_written(self, duckdb_cursor: DuckDBPyConnection, memory: fsspec.AbstractFileSystem):
194+
def test_copy_partition_with_columns_written(
195+
self, duckdb_cursor: DuckDBPyConnection, memory: fsspec.AbstractFileSystem
196+
):
195197
duckdb_cursor.register_filesystem(memory)
196198

197199
duckdb_cursor.execute(

0 commit comments

Comments
 (0)