From 5243754e27cc0c6e0e8a857e85e048b2402fcb99 Mon Sep 17 00:00:00 2001 From: Kyle Bowman Date: Sun, 24 Mar 2024 15:34:11 -0400 Subject: [PATCH] BUG: Fix proto.__all__. Entries must be str. --- src/proto/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5