Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 3, 2024
1 parent 0a9c6c2 commit 814df87
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion narwhals/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ def is_dask_dataframe(df: Any) -> TypeGuard[dd.DataFrame]:
return bool((dd := get_dask_dataframe()) is not None and isinstance(df, dd.DataFrame))



def is_ibis_table(df: Any) -> TypeGuard[duckdb.DuckDBPyRelation]:
"""Check whether `df` is a Ibis Table without importing Ibis."""
return bool((ibis := get_ibis()) is not None and isinstance(df, ibis.Table))
Expand Down

0 comments on commit 814df87

Please sign in to comment.