Registers the Sphinx extension. You shouldn't need to call this directly; configure Sphinx to use this module instead.
(app: t.Any)
| 44 | |
| 45 | |
| 46 | def setup(app: t.Any) -> dict[str, t.Any]: |
| 47 | """Registers the Sphinx extension. |
| 48 | |
| 49 | You shouldn't need to call this directly; configure Sphinx to use this |
| 50 | module instead. |
| 51 | """ |
| 52 | app.add_object_type("configtrait", "configtrait", objname="Config option") |
| 53 | return {"parallel_read_safe": True, "parallel_write_safe": True} |
| 54 | |
| 55 | |
| 56 | def interesting_default_value(dv: t.Any) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…