(name: str)
| 409 | |
| 410 | |
| 411 | def resource_path(name: str) -> Path: |
| 412 | # NOTE: we have to do this cast because pyright is not comfortable with the |
| 413 | # Traversable protocol. |
| 414 | return cast(Path, resources.files(__name__)) / name |
| 415 | |
| 416 | |
| 417 | def info(msg: str, fg: str = "green") -> None: |
no test coverage detected