comparison 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
comparison
equal deleted inserted replaced
176:24a05dae0e76 177:6dde1e344ae8
16 __version__ = "0.7.dev1" 16 __version__ = "0.7.dev1"
17 17
18 __revision__ = "|VCSRevision|" 18 __revision__ = "|VCSRevision|"
19 __date__ = "|VCSJustDate|" 19 __date__ = "|VCSJustDate|"
20 20
21
22 import fnmatch
23 import copy
24
25 from .compat import u, u2fs
26 from .config import Configuration
27
28
29 __all__ = ["load", "safe_load", 21 __all__ = ["load", "safe_load",
30 "set_loader", "get_loader", 22 "set_loader", "get_loader",
31 "get_default_loader", 23 "get_default_loader",
32 "Configuration"] 24 "Configuration"]
25
26
27 import fnmatch
28 import copy
29
30 from .compat import u, u2fs
31 from .config import Configuration
33 32
34 33
35 COMMENTS = [u("__comment"), 34 COMMENTS = [u("__comment"),
36 u("__doc"), 35 u("__doc"),
37 ] 36 ]