Skip to content

Commit

Permalink
docs: datamodel index docs update (#2825)
Browse files Browse the repository at this point in the history
doc: datamodel index docs update
  • Loading branch information
hpohekar authored May 15, 2024
1 parent 183b5c2 commit c23aab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/rstgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _process_datamodel_path(full_name: str):
Path of datamodel class.
"""
path_string = re.findall("core.*", full_name)
path = path_string[0].replace("core.generated", "")
path = path_string[0].replace("core.generated.", "")
path = re.sub("[0-9]", "", path)
path = path.replace("Root." if "Root." in path else "Root", "")
path = path.replace("datamodel_.", "")
Expand Down

0 comments on commit c23aab7

Please sign in to comment.