Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Dec 1, 2023
1 parent 562e6a2 commit 3c1b290
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion documentation/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,8 @@ def process_signature(
return

# only apply in the amici.amici module
if name.split(".")[1] != "amici":
split_name = name.split(".")
if len(split_name) < 2 or split_name[1] != "amici":
return

signature = fix_typehints(signature)
Expand Down

0 comments on commit 3c1b290

Please sign in to comment.