No command found when running Commitizen cli (e.g., `cz --debug`)
| 190 | |
| 191 | |
| 192 | class NoCommandFoundError(CommitizenException): |
| 193 | """No command found when running Commitizen cli (e.g., `cz --debug`)""" |
| 194 | |
| 195 | exit_code = ExitCode.NO_COMMAND_FOUND |
| 196 | message = "Command is required" |
| 197 | |
| 198 | |
| 199 | class InvalidCommandArgumentError(CommitizenException): |
no outgoing calls
no test coverage detected
searching dependent graphs…