From: Kyle Bowman Date: Sun, 24 Mar 2024 19:34:11 +0000 (-0400) Subject: BUG: Fix proto.__all__. Entries must be str. X-Git-Tag: v0.1.0~1 X-Git-Url: https://git.rocketbowman.com/?a=commitdiff_plain;h=5243754e27cc0c6e0e8a857e85e048b2402fcb99;p=proto.git BUG: Fix proto.__all__. Entries must be str. --- diff --git a/src/proto/__init__.py b/src/proto/__init__.py index 5fccd95..e0ab593 100644 --- a/src/proto/__init__.py +++ b/src/proto/__init__.py @@ -1,4 +1,4 @@ from proto.command import Command, command from proto.infer import get_parser, get_argspecs -__all__ = ['Command', 'command', get_argspecs, get_parser] \ No newline at end of file +__all__ = ['Command', 'command', 'get_argspecs', 'get_parser'] \ No newline at end of file