changeset 177:6dde1e344ae8

Style: put "__all__" into the meta-variables section as recommended by PEP
author Franz Glasner <f.glasner@feldmann-mg.com>
date Tue, 30 Apr 2019 12:38:52 +0200
parents 24a05dae0e76
children eeb3ed104ea1
files configmix/__init__.py
diffstat 1 files changed, 5 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/configmix/__init__.py	Fri Apr 26 18:28:31 2019 +0200
+++ b/configmix/__init__.py	Tue Apr 30 12:38:52 2019 +0200
@@ -18,6 +18,11 @@
 __revision__ = "|VCSRevision|"
 __date__ = "|VCSJustDate|"
 
+__all__ = ["load", "safe_load",
+           "set_loader", "get_loader",
+           "get_default_loader",
+           "Configuration"]
+
 
 import fnmatch
 import copy
@@ -26,12 +31,6 @@
 from .config import Configuration
 
 
-__all__ = ["load", "safe_load",
-           "set_loader", "get_loader",
-           "get_default_loader",
-           "Configuration"]
-
-
 COMMENTS = [u("__comment"),
             u("__doc"),
 ]