Skip to content

Commit

Permalink
restrict support_index to Pandas DataFrames only
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Jul 22, 2024
1 parent abb485a commit 7df0911
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 @@ -453,7 +453,7 @@ def support_index(data):
Update this utility when other data interfaces support that (geopandas, dask, etc.)
"""
return isinstance(data, pd.DataFrame)
return type(data) is pd.DataFrame


def process_intake(data, use_dask):
Expand Down

0 comments on commit 7df0911

Please sign in to comment.