Mercurial > hgrepos > Python > libs > ConfigMix
diff configmix/__init__.py @ 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 | 327032bb0f6b |
| children | eeb3ed104ea1 |
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"), ]
