We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9563e commit 6fbe51dCopy full SHA for 6fbe51d
wdoc/wdoc.py
@@ -1521,5 +1521,9 @@ def create_autoincrease_top_k_chain(inputs):
1521
logger.warning(f"Total cost: ${etotal_cost:.5f}")
1522
self.latest_cost = etotal_cost
1523
1524
+ @set_parse_doc_help_md_as_docstring
1525
+ @staticmethod
1526
+ def parse_doc(*args, **kwargs) -> Union[List[Document], str, List[dict]]:
1527
+ from wdoc.utils.tasks.parse import parse_doc
1528
-wdoc.parse_doc = staticmethod(parse_doc)
1529
+ return parse_doc(*args, **kwargs)
0 commit comments