(title: str)
| 32 | |
| 33 | |
| 34 | def _pyprefix(title: str) -> str: |
| 35 | if MULTIRUN: |
| 36 | prefix = f"(python{sys.version_info.major}.{sys.version_info.minor})" |
| 37 | return f"{prefix:14}{title}" |
| 38 | return title |
| 39 | |
| 40 | |
| 41 | def _get_changelog_version() -> str: |
no outgoing calls
no test coverage detected
searching dependent graphs…