From 7f71132cf019dafa230e582f51283bf5ba3d7ba6 Mon Sep 17 00:00:00 2001 From: Kyle Bowman Date: Sun, 24 Mar 2024 14:57:44 -0400 Subject: [PATCH] Add get_argspec, get_parser to __all__. --- src/proto/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/proto/__init__.py b/src/proto/__init__.py index 4e0fee2..5fccd95 100644 --- a/src/proto/__init__.py +++ b/src/proto/__init__.py @@ -1,3 +1,4 @@ from proto.command import Command, command +from proto.infer import get_parser, get_argspecs -__all__ = ['Command', 'command'] \ No newline at end of file +__all__ = ['Command', 'command', get_argspecs, get_parser] \ No newline at end of file -- 2.39.5