__init__.py
python
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago
| 1 | """Governance gates reminder package (§KH1.9).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | __all__ = ["GateScanResult", "PendingGate", "scan_governance_gates"] |
| 6 | |
| 7 | |
| 8 | def __getattr__(name: str): |
| 9 | if name == "scan_governance_gates": |
| 10 | from tools.governance_gates.scan import scan_governance_gates |
| 11 | |
| 12 | return scan_governance_gates |
| 13 | if name in {"GateScanResult", "PendingGate"}: |
| 14 | from tools.governance_gates import types as _types |
| 15 | |
| 16 | return getattr(_types, name) |
| 17 | raise AttributeError(f"module {__name__!r} has no attribute {name!r}") |
File History
1 commit
sha256:8461d44b77376fbf06fa7c3e085d309e3010fd8d5886d63c63e69ce118811ad4
docs: record AFF-b feature-tip SHAs after AFF-b-ISR commit.
Human
4 days ago