Skip to content

Commit

Permalink
Fixed typo for cuda namespace fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timohl committed Dec 18, 2024
1 parent 22f89e0 commit f677777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def skip(app, what, name, obj, would_skip, options):
def fix_namespace(text):
"""Fixes namespace in a string by removing .[cpu|cuda].pybind."""
return (text.replace("open3d.cpu.pybind.", "open3d.").replace(
"open3d.cuda.pybind.cuda.", "open3d.") if text is not None else None)
"open3d.cuda.pybind.", "open3d.") if text is not None else None)


def process_signature(app, what, name, obj, options, signature,
Expand Down

0 comments on commit f677777

Please sign in to comment.