From 8d71f8aef07df3b8cbc0403649f6b342bbd1e068 Mon Sep 17 00:00:00 2001 From: mhostetter Date: Tue, 10 May 2022 15:10:27 -0400 Subject: [PATCH] Fix hiding `dot()` method from `Array` API docs --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index f010942cf..49b0d9906 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -243,7 +243,7 @@ def autodoc_skip_member(app, what, name, obj, skip, options): if hasattr(obj, "__objclass__"): # This is a NumPy method, don't include docs return True - elif getattr(obj, "__qualname__", None) in ["FieldFunction.dot", "Array.astype"]: + elif getattr(obj, "__qualname__", None) in ["FunctionMixin.dot", "Array.astype"]: # NumPy methods that wer overridden, don't include docs return True elif hasattr(obj, "__qualname__") and getattr(obj, "__qualname__").split(".")[0] == "FieldArray" and hasattr(numpy.ndarray, name):