From 5608411b645d0abe8249e9cd596fd4668125045d Mon Sep 17 00:00:00 2001 From: Ryan Ly <310197+rly@users.noreply.github.com> Date: Wed, 10 Dec 2025 17:18:44 -0800 Subject: [PATCH] Update default type map to None for TypeMap generation Changed the default type map to None for a clean TypeMap generation. --- docs/format/source/conf_doc_autogen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/format/source/conf_doc_autogen.py b/docs/format/source/conf_doc_autogen.py index 77c16c42..8cf7b057 100644 --- a/docs/format/source/conf_doc_autogen.py +++ b/docs/format/source/conf_doc_autogen.py @@ -80,10 +80,10 @@ # or to show only the parts that are actually new to a current type while only linking to base types spec_resolve_type_inc = False -# Default type map to be used. This is the type map where dependent namespaces are stored. In the case of -# NWB this is spec_default_type_map = pynwb.get_type_map() import pynwb -spec_default_type_map = pynwb.get_type_map() + +# Generate a clean TypeMap using the namespace from this repo +spec_default_type_map = None # Default specification classes for groups datasets and namespaces. In the case of NWB these are the NWB-specfic # spec classes. In the general cases these are the spec classes from HDMF