(step_dir: str)
| 115 | |
| 116 | |
| 117 | def parse_step_from_dir(step_dir: str) -> int: |
| 118 | # TODO(markblee): use regex. |
| 119 | return int(step_dir[-STEP_NUM_DIGITS:]) |
| 120 | |
| 121 | |
| 122 | def build_step_dir(base_dir: str, *, step: int) -> str: |
no outgoing calls
no test coverage detected