From d10c635982e4a3214a3147e6727e60da4f049983 Mon Sep 17 00:00:00 2001 From: TheOnePath Date: Wed, 5 Jul 2023 21:48:00 +0100 Subject: [PATCH] Updated help.py Fixed type for annotation in init method --- soypak/cli/commands/help.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soypak/cli/commands/help.py b/soypak/cli/commands/help.py index 369a6c9..792e4f0 100644 --- a/soypak/cli/commands/help.py +++ b/soypak/cli/commands/help.py @@ -10,7 +10,7 @@ Usage: help [, , ..., ] __cmd_name__ = "help" - def __init__(self, *, data = argparse.Namespace, args: list[str] = []) -> None: + def __init__(self, *, data: argparse.Namespace, args: list[str] = []) -> None: super().__init__() self.data = data self.rargs = args