# HG changeset patch # User Franz Glasner # Date 1556620732 -7200 # Node ID 6dde1e344ae82ec7682199561503942e4c1456d6 # Parent 24a05dae0e762fec48737fc885eb5d63c942bc38 Style: put "__all__" into the meta-variables section as recommended by PEP diff -r 24a05dae0e76 -r 6dde1e344ae8 configmix/__init__.py --- 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"), ]