Skip to content

Commit b9f79e0

Browse files
authored
Merge pull request #60 from HiDiHlabs/aggregate_vsi
Functions to aggregate Signal and VSI per cell
2 parents 7aaa4b3 + a5abbb6 commit b9f79e0

10 files changed

Lines changed: 1451 additions & 15 deletions

File tree

docs/source/conf.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
polars=("https://docs.pola.rs/api/python/stable/", None),
6868
python=("https://docs.python.org/3", None),
6969
scipy=("https://docs.scipy.org/doc/scipy/", None),
70+
shapely=("https://shapely.readthedocs.io/en/stable/", None),
7071
sklearn=("https://scikit-learn.org/stable/", None),
7172
umap=("https://umap-learn.readthedocs.io/page/", None),
7273
)
@@ -85,5 +86,12 @@ def skip_attributes(app, what, name, obj, skip, options):
8586
return skip
8687

8788

89+
def modify_overloads(app, what, name, obj, skip, options):
90+
if what == "function" and len(obj.overloads) > 0:
91+
obj.overloads.clear() # delete overloads
92+
return skip
93+
94+
8895
def setup(sphinx):
8996
sphinx.connect("autoapi-skip-member", skip_attributes)
97+
sphinx.connect("autoapi-skip-member", modify_overloads)

0 commit comments

Comments
 (0)