()
| 66 | |
| 67 | @staticmethod |
| 68 | def get_default_commands(): |
| 69 | formatted_comands = [] |
| 70 | for command in Settings._default_commands: |
| 71 | formatted_comands.append(Settings.COMMAND_PREFIX+command) |
| 72 | |
| 73 | return formatted_comands |
| 74 | |
| 75 | @staticmethod |
| 76 | def parseBool(value:str)->bool: |
no test coverage detected