Skip to content

Commit 76659e2

Browse files
Merge pull request #2631 from RenaudLN/fix/overide_dict
Fixed make_docstring's override_dict
2 parents 29eee77 + 5293eb0 commit 76659e2

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

Diff for: packages/python/plotly/plotly/express/_doc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ def make_docstring(fn, override_dict={}, append_dict={}):
538538
param_desc_list = param_doc[1:]
539539
param_desc = (
540540
tw.fill(" ".join(param_desc_list or ""))
541-
if param in docs
541+
if param in docs or param in override_dict
542542
else "(documentation missing from map)"
543543
)
544544

0 commit comments

Comments
 (0)