From a30fa66345ab54b62af98fb428ce0cd4515525f6 Mon Sep 17 00:00:00 2001 From: Vikas Gorur Date: Thu, 14 Jul 2016 20:30:28 +0530 Subject: [PATCH] Make __all__ immutable to stop pep257 from complaining. --- proselint/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proselint/__init__.py b/proselint/__init__.py index f4c161ada..5483d1f3c 100644 --- a/proselint/__init__.py +++ b/proselint/__init__.py @@ -1,4 +1,4 @@ """Proselint applies advice from great writers to your writing.""" from . import tools -__all__ = ['tools'] +__all__ = ('tools')