Attention is currently required from: lynxis lazus.
1 comment:
File pySim/global_platform/__init__.py:
Patch Set #3, Line 868: install_cap_parser_inst_prm_g_grp = install_cap_parser.add_argument_group()
I looked into the CI failure (docs):
```
File "/usr/local/lib/python3.13/dist-packages/sphinxarg/ext.py", line 96, in print_action_groups
section = nodes.section(ids=[action_group['title'].replace(' ', '-').lower()])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'replace'
```
sphinxargs trips over the group not having a title for some reason, with this it works:
```py
install_cap_parser_inst_prm_g_grp = install_cap_parser.add_argument_group("title")
```
upstream code:
https://github.com/sphinx-doc/sphinx-argparse/blob/61b8bf0e2ffab20664acaba99e0f16e6f04e0ad0/sphinxarg/ext.py#L135
To view, visit change 42066. To unsubscribe, or for help writing mail filters, visit settings.