Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python/pyspark/sql/conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -891,8 +891,8 @@ def convert_other(value: Any) -> Any:
return value

return convert_other
else: # pragma: no cover
assert False, f"Need converter for {dataType} but failed to find one."

assert False, f"_need_converter returned True for {dataType} but no converter was created."

@staticmethod
def convert(data: Sequence[Any], schema: StructType, use_large_var_types: bool) -> "pa.Table":
Expand Down