Skip to content
Open
Changes from 1 commit
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
3 changes: 1 addition & 2 deletions python/datafusion/input/location.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@
msg = "TODO: Currently unable to support CSV input files."
raise RuntimeError(msg)
else:
msg = f"Input of format: `{format}` is currently not supported.\
Only Parquet and CSV."
msg = f"Input of format: `{file_format}` is currently not supported. Only Parquet and CSV."

Check failure on line 81 in python/datafusion/input/location.py

View workflow job for this annotation

GitHub Actions / build

Ruff (E501)

python/datafusion/input/location.py:81:89: E501 Line too long (103 > 88)
Comment thread
Ritinikhil marked this conversation as resolved.
raise RuntimeError(msg)

# Input could possibly be multiple files. Create a list if so
Expand Down
Loading