From d9564a1c8ccc0fac992e8ec011d1835e84cc2ff7 Mon Sep 17 00:00:00 2001 From: Zach White Date: Sat, 4 Jan 2025 12:09:52 -0800 Subject: [PATCH] flake8 --- milc/milc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milc/milc.py b/milc/milc.py index e9cf3dd..578ae85 100644 --- a/milc/milc.py +++ b/milc/milc.py @@ -689,7 +689,7 @@ def add_subcommand( kwargs['help'] = description # Type ignored because we explicitly add a subparser above - self.subcommands[name] = SubparserWrapper(self, name, self._subparsers.add_parser(name, **kwargs)) # type: ignore[union-attr] + self.subcommands[name] = SubparserWrapper(self, name, self._subparsers.add_parser(name, **kwargs)) # type: ignore[union-attr] self.subcommands[name].set_defaults(entrypoint=handler) self.release_lock()