]> git.rocketbowman.com Git - proto.git/commitdiff
BUG: Fix proto.__all__. Entries must be str.
authorKyle Bowman <kyle+github@rocketbowman.com>
Sun, 24 Mar 2024 19:34:11 +0000 (15:34 -0400)
committerKyle Bowman <kyle+github@rocketbowman.com>
Sun, 24 Mar 2024 19:34:11 +0000 (15:34 -0400)
src/proto/__init__.py

index 5fccd95ecd50b8e7518af5a8eb224379273cb55b..e0ab59362570a60af9aa4c7ae40f041f80430841 100644 (file)
@@ -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