Skip to content

Commit ba9314d

Browse files
style: fix ruff linting errors - remove whitespace from blank lines
Amp-Thread-ID: https://ampcode.com/threads/T-ab40799c-7282-451b-bdf6-4a74c73a62b7 Co-authored-by: Amp <[email protected]>
1 parent 75cf65d commit ba9314d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_parallel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def test_parallel_unsupported_type_error(self) -> None:
303303
"""Test that unsupported types raise TypeError in parallel mode."""
304304
class CustomType:
305305
pass
306-
306+
307307
data = {f"key{i}": CustomType() for i in range(15)}
308308
with pytest.raises(TypeError, match="Unsupported data type"):
309309
dicttoxml.dicttoxml(data, parallel=True, workers=4)
@@ -318,7 +318,7 @@ def test_parallel_with_bool_values(self) -> None:
318318
def test_parallel_with_datetime_values(self) -> None:
319319
"""Test parallel processing with datetime values."""
320320
from datetime import datetime
321-
321+
322322
data = {f"key{i}": datetime(2024, 1, i + 1) for i in range(15)}
323323
result_parallel = dicttoxml.dicttoxml(data, parallel=True, workers=4)
324324
result_serial = dicttoxml.dicttoxml(data, parallel=False)

0 commit comments

Comments
 (0)