Added __all__ to editor

This commit is contained in:
Peter Ruibal 2015-01-10 20:41:28 -08:00
parent 72aa40f359
commit 561996958b
1 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,13 @@ import tempfile
from distutils.spawn import find_executable
__all__ = [
'edit',
'get_editor',
'EditorError',
]
class EditorError(RuntimeError):
pass