Skip to content

Commit f2e1488

Browse files
committed
Handle matplotlib.axes
1 parent e007b36 commit f2e1488

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727

2828
intersphinx_mapping = dict(
2929
python=("https://docs.python.org/3", None),
30-
jinja=("http://jinja.pocoo.org/docs/2.10", None),
30+
jinja=("http://jinja.pocoo.org/docs/2.10.x", None),
3131
sphinx=("https://www.sphinx-doc.org/en/master/", None),
3232
# examples
3333
numpy=("https://docs.scipy.org/doc/numpy/", None),
3434
anndata=("https://anndata.readthedocs.io/en/latest/", None),
35-
pandas=("http://pandas.pydata.org/pandas-docs/stable/", None),
35+
pandas=("https://pandas.pydata.org/pandas-docs/stable/", None),
3636
scipy=("https://docs.scipy.org/doc/scipy/reference/", None),
3737
)
3838

scanpydoc/elegant_typehints.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
qualname_overrides_default = {
5454
"anndata.base.AnnData": "anndata.AnnData",
5555
"anndata.core.anndata.AnnData": "anndata.AnnData",
56+
"matplotlib.axes._axes.Axes": "matplotlib.axes.Axes",
5657
"pandas.core.frame.DataFrame": "pandas.DataFrame",
5758
"pandas.core.indexes.base.Index": "pandas.Index",
5859
"scipy.sparse.base.spmatrix": "scipy.sparse.spmatrix",

0 commit comments

Comments
 (0)