Alexander Lanin
Alexander Lanin
Correction: maybe the change is simple after all while preserving current behavior. Currently when elements have the `:hide:` option, they do appear in e.g. `needtable` and they can be `ref`erenced...
FYI: beartype I found this issue, while searching why the used pydantic version is so old. Maybe it's just me, but I then found beartype which I've never heard of...
Sure, although I'm not sure it's worth looking: https://github.com/AlexanderLanin/homeassistant-sungrow/blob/main/custom_components/__init__.py So far it found incorrect assignment to dataclasses and incorrect parameter types in functions. Both in addition to running mypy. See...
:D The trouble is sphinx-needs takes a str() of the parameter. Which is a dynamic address for functions. So what I did so far was wrap the functions in a...
I tried injecting into jinja2uml instead of render_context. It's not the best API, but very first attempts look promising.... ```py def add_custom_uml_functions(functions: dict[str, Callable]): orig_jinja2uml = sphinx_needs.directives.needuml.jinja2uml def wrapper( #...