(name: str)
| 43 | |
| 44 | |
| 45 | def _validate_snapshot_name(name: str) -> None: |
| 46 | if not SNAPSHOT_NAME_RE.fullmatch(name): |
| 47 | raise typer.BadParameter(f"Invalid snapshot name: {name!r}. Use alphanumeric, dot, hyphen, underscore.") |
| 48 | |
| 49 | |
| 50 | @uitree_app.command("dump") |
no outgoing calls
no test coverage detected