(self, for_git_repo: bool = False)
| 187 | return functionalities |
| 188 | |
| 189 | def module_metadata_path(self, for_git_repo: bool = False) -> str: |
| 190 | if for_git_repo: |
| 191 | return os.path.join(CODEPLAIN_METADATA_FOLDER, MODULE_METADATA_FILENAME) |
| 192 | |
| 193 | return os.path.join(self.get_codeplain_folder(), MODULE_METADATA_FILENAME) |
| 194 | |
| 195 | def get_hashes(self) -> dict[str, str]: |
| 196 | hashes = { |
no test coverage detected