(command: str | list[str])
| 56 | |
| 57 | |
| 58 | def _command_to_string(command: str | list[str]) -> str: |
| 59 | return " ".join(command) if isinstance(command, list) else str(command) |
| 60 | |
| 61 | |
| 62 | def _get_filenames(folders: list[str]) -> list[str]: |
no test coverage detected
searching dependent graphs…