From 06db9220f9ca163dd26f7a8810c0b7759623a2e6 Mon Sep 17 00:00:00 2001 From: timofey Date: Sun, 25 Dec 2022 02:56:26 +0000 Subject: [PATCH] explicit args --- v6d2ctx/context.py | 1 + 1 file changed, 1 insertion(+) diff --git a/v6d2ctx/context.py b/v6d2ctx/context.py index 46f539c..e61e120 100644 --- a/v6d2ctx/context.py +++ b/v6d2ctx/context.py @@ -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):