Skip to content

Commit 5293eb0

Browse files
committed
Fixed override_dict for params that are not in docs (used for px.pie for instance)
1 parent 3a711e9 commit 5293eb0

File tree

1 file changed

+1
-1
lines changed
  • packages/python/plotly/plotly/express

1 file changed

+1
-1
lines changed

packages/python/plotly/plotly/express/_doc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def make_docstring(fn, override_dict={}, append_dict={}):
530530
param_desc_list = param_doc[1:]
531531
param_desc = (
532532
tw.fill(" ".join(param_desc_list or ""))
533-
if param in docs
533+
if param in docs or param in override_dict
534534
else "(documentation missing from map)"
535535
)
536536

0 commit comments

Comments
 (0)