Skip to content

Commit

Permalink
chore: Remove duckdb comment
Browse files Browse the repository at this point in the history
Not planning to support this anymore, requires `fsspec` which isn't in `dev`

```
InvalidInputException
Traceback (most recent call last)
Cell In[6], line 5
       3 with duck._reader._opener.open(url) as f:
       4     fn = duck._reader._read_fn['.json']
----> 5     thing = fn(f.read())

InvalidInputException: Invalid Input Error: This operation could not be completed because required module 'fsspec' is not installed"
```
  • Loading branch information
dangotbanned committed Nov 8, 2024
1 parent 279fea9 commit 7d6c7ca
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tools/datasets/_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,9 +386,6 @@ def get_backend(backend: _Backend, /) -> _Reader[Any, Any]:
return _PandasReader("pandas")
elif backend == "pyarrow":
return _PyArrowReader("pyarrow")
elif backend == "duckdb":
msg = "Included in ``dev``, not investigated yet"
raise NotImplementedError(msg)
elif backend in {"ibis", "cudf", "dask", "modin"}:
msg = "Supported by ``narwhals``, not investigated yet"
raise NotImplementedError(msg)
Expand Down

0 comments on commit 7d6c7ca

Please sign in to comment.