ids.py
python
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab
NXP-b DONE: independent BV-r2 pass + ISR (SD-17)
Human
minor
⚠ breaking
2 days ago
| 1 | """Step and template id validation (§K9.3).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | import re |
| 6 | |
| 7 | STEP_ID_PATTERN = re.compile(r"^[a-z][a-z0-9_-]{0,63}$") |
| 8 | |
| 9 | |
| 10 | def is_valid_step_id(value: str) -> bool: |
| 11 | """Return True when ``value`` matches the frozen id regex.""" |
| 12 | return bool(STEP_ID_PATTERN.match(value)) |
File History
1 commit
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab
NXP-b DONE: independent BV-r2 pass + ISR (SD-17)
Human
minor
⚠
2 days ago