Skip to content

Commit

Permalink
Update modin/utils.py
Browse files Browse the repository at this point in the history
Co-authored-by: Anatoly Myachev <[email protected]>
  • Loading branch information
sfc-gh-mvashishtha and anmyachev authored Jun 11, 2024
1 parent ce43025 commit a38f437
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modin/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,9 @@ def _update_inherited_docstrings(doc_module: DocModule) -> None:
doc_module : DocModule
The current DocModule.
"""
_doc_module = doc_module.get()
for doc_inheritance_call in _docstring_inheritance_calls:
doc_inheritance_call(doc_module=doc_module.get()) # type: ignore[call-arg]
doc_inheritance_call(doc_module=_doc_module) # type: ignore[call-arg]


def _inherit_docstrings_in_place(
Expand Down

0 comments on commit a38f437

Please sign in to comment.