Skip to content

Commit

Permalink
Make __all__ immutable to stop pep257 from complaining.
Browse files Browse the repository at this point in the history
  • Loading branch information
vikasgorur authored and suchow committed Jul 17, 2016
1 parent abda2a2 commit a30fa66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proselint/__init__.py
@@ -1,4 +1,4 @@
"""Proselint applies advice from great writers to your writing."""
from . import tools

__all__ = ['tools']
__all__ = ('tools')

0 comments on commit a30fa66

Please sign in to comment.