From e0b6e9bafc53b0cc75413b5d840ded9d97f9dbf2 Mon Sep 17 00:00:00 2001 From: Ilia Kats Date: Fri, 19 Jun 2026 17:36:11 +0200 Subject: [PATCH] remove seealso section from ExtensionNamespace This protocol is also included in documentation of downstream packages, which then can't resolve the link (and even if they could, linking to an example meant for developers makes no sense downstream) --- src/scverse_misc/_extensions.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/scverse_misc/_extensions.py b/src/scverse_misc/_extensions.py index 53ab7bd..0f20c11 100644 --- a/src/scverse_misc/_extensions.py +++ b/src/scverse_misc/_extensions.py @@ -29,9 +29,6 @@ class ExtensionNamespace(Protocol): Protocol's can't enforce that the `__init__` accepts the correct types. See `_check_namespace_signature` for that. This is mainly useful for static type checking with mypy and IDEs. - - .. seealso:: - :ref:`example-extension-namespaces` """ def __init__(self, instance: object) -> None: