Skip to content

Commit

Permalink
Update hvplot/util.py
Browse files Browse the repository at this point in the history
Co-authored-by: Simon Høxbro Hansen <[email protected]>
  • Loading branch information
MarcoGorelli and hoxbro authored Dec 18, 2023
1 parent 25e2277 commit ede06f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hvplot/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def is_polars(data):
if not check_library(data, 'polars'):
return False
import polars as pl
return isinstance(data, (pl.DataFrame, pl.Series))
return isinstance(data, (pl.DataFrame, pl.Series, pl.LazyFrame))

def is_intake(data):
if "intake" not in sys.modules:
Expand Down

0 comments on commit ede06f9

Please sign in to comment.