Skip to content

Commit 17ce6eb

Browse files
committed
fix Ruff errors
1 parent 584c600 commit 17ce6eb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

python/datafusion/dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ def _prepare_join(
811811
and isinstance(on[0], list)
812812
and isinstance(on[1], list)
813813
):
814-
# We know this is safe because we've checked the types
814+
# We know this is safe because we've checked the types
815815
join_keys = on # type: ignore[assignment]
816816
resolved_on = None
817817
else:

python/tests/test_dataframe.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1940,7 +1940,6 @@ def test_write_parquet_with_options_encoding(tmp_path, encoding, data_types, res
19401940
data["float"] = [1.01, 2.02, 3.03]
19411941
elif data_type == "str":
19421942
data["str"] = ["a", "b", "c"]
1943-
19441943
elif data_type == "bool":
19451944
data["bool"] = [True, False, True]
19461945

0 commit comments

Comments
 (0)