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

Commit 9e9b033

Browse files
committed
Merge pull request #156 from lordmauve/master
Fix: __all__ should be a tuple
2 parents 20dc16f + c3b1791 commit 9e9b033

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)