This commit is contained in:
adator
2024-10-01 01:17:00 +02:00
parent f2b5c48fc9
commit 3cdee5fddf
5 changed files with 31 additions and 61 deletions

View File

@@ -124,8 +124,12 @@ class Test():
return None
def cmd(self, data:list) -> None:
try:
cmd = list(data).copy()
return None
return None
except Exception as err:
self.Base.logs.error(f"General Error: {err}")
def _hcmds(self, user:str, channel: any, cmd: list, fullcmd: list = []) -> None: