Skip to content

Commit a810a95

Browse files
skip legend arg in pandas hist
1 parent 5d713d0 commit a810a95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/python/plotly/plotly/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,6 @@ def hist_series(data_frame, **kwargs):
172172
from .express import histogram
173173

174174
skip = ["by", "grid", "xlabelsize", "xrot", "ylabelsize", "yrot", "ax"]
175-
skip += ["figsize", "bins"]
175+
skip += ["figsize", "bins", "legend"]
176176
new_kwargs = {k: kwargs[k] for k in kwargs if k not in skip}
177177
return histogram(data_frame, **new_kwargs)

0 commit comments

Comments
 (0)