We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b619e9a commit 924aacfCopy full SHA for 924aacf
pyproject.toml
@@ -95,7 +95,7 @@ ignore = [
95
# "FBT003",
96
# "C416",
97
# "SIM102",
98
- "PGH003",
+ # "PGH003",
99
"PLR2004",
100
"PERF401",
101
"PD901",
python/datafusion/dataframe.py
@@ -517,7 +517,8 @@ def join(
517
and isinstance(on[0], list)
518
and isinstance(on[1], list)
519
):
520
- join_keys = on # type: ignore
+ # We know this is safe because we've checked the types
521
+ join_keys = on # type: ignore[assignment]
522
on = None
523
524
if join_keys is not None:
0 commit comments