explicit args

This commit is contained in:
AF 2022-12-25 02:56:26 +00:00
parent 85aa795e35
commit 06db9220f9

View File

@ -52,6 +52,7 @@ command_type = Callable[[Context, list[str]], Awaitable[None]]
class Explicit(Exception):
def __init__(self, msg: str):
self.msg = msg
super().__init__(msg)
class Implicit(Exception):