(label: str)
| 78 | |
| 79 | |
| 80 | def slug_timestamp(label: str) -> str: |
| 81 | safe_label = label.strip().replace("_", "-") |
| 82 | return datetime.now().strftime(f"%Y-%m-%dT%H-%M-%S-{safe_label}") |
| 83 | |
| 84 | |
| 85 | def write_json(path: Path, value: Any) -> None: |
no outgoing calls
no test coverage detected