Use shorter name for responses, like in the requests doc.

Change Organizer's __all__ to be more in line with the other __all__s.
This commit is contained in:
Joscha
2019-04-25 19:02:48 +00:00
parent 82adeb324f
commit f0c42ce8ec
2 changed files with 11 additions and 13 deletions

View File

@@ -5,9 +5,7 @@ import shutil
from . import utils
__all__ = [
"Organizer",
]
__all__ = ["Organizer"]
logger = logging.getLogger(__name__)
class Organizer: