(folder: str, file: str)
| 131 | |
| 132 | def check_and_update_submodules(): |
| 133 | def check_folder(folder: str, file: str) -> bool: |
| 134 | return os.path.isdir(folder) and os.path.isfile(os.path.join(folder, file)) |
| 135 | |
| 136 | # Check if the directories exist for each required submodule |
| 137 | missing_submodules = {} |
no outgoing calls
no test coverage detected