Browse Source

chore: fix sphinx plugin

pull/426/head
Parodi, Eugenio 🌶 9 months ago
parent
commit
582565df54
  1. 2
      docs/source/sphinx_modules/sphinx_ext_autosummary_reworked.py

2
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]):

Loading…
Cancel
Save