diff --git a/docs/source/sphinx_modules/sphinx_ext_autosummary_reworked.py b/docs/source/sphinx_modules/sphinx_ext_autosummary_reworked.py index 5abc2ba1..36dd482e 100644 --- a/docs/source/sphinx_modules/sphinx_ext_autosummary_reworked.py +++ b/docs/source/sphinx_modules/sphinx_ext_autosummary_reworked.py @@ -153,7 +153,7 @@ def setup(app: Sphinx) -> ExtensionMetadata: def _getSignals(_obj): ret = [] - for _name in (_th:=get_type_hints(_obj)): + for _name in (_th:=get_type_hints(_obj,localns={'TTkContainer':ttk.TTkContainer})): # print(f"{_th=}") if _name.startswith('_'): continue if 'pyTTkSignal' in str(_th[_name]):