From d3941586f2d864910a6abbd3cb471eaa7d360c76 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Sun, 18 Oct 2015 17:58:46 +1100 Subject: [PATCH] Remove `collect` from `__all__` The collect function was removed in a0dcb0c2, however it was not removed from `__all__`. --- src/pep257.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pep257.py b/src/pep257.py index 9513861f..2d3c7781 100755 --- a/src/pep257.py +++ b/src/pep257.py @@ -61,7 +61,7 @@ def next(obj, default=nothing): __version__ = '0.7.1-alpha' -__all__ = ('check', 'collect') +__all__ = ('check') NO_VIOLATIONS_RETURN_CODE = 0 VIOLATIONS_RETURN_CODE = 1