Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit c3b1791

Browse files
committed
Fix: __all__ should be a tuple
1 parent 20dc16f commit c3b1791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pep257.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def next(obj, default=nothing):
6161

6262

6363
__version__ = '0.7.1-alpha'
64-
__all__ = ('check')
64+
__all__ = ('check',)
6565

6666
NO_VIOLATIONS_RETURN_CODE = 0
6767
VIOLATIONS_RETURN_CODE = 1

0 commit comments

Comments
 (0)