diff configmix/yaml.py @ 250:ff964825a75a

Style: placement of "__all__"
author Franz Glasner <fzglas.hg@dom66.de>
date Tue, 07 Jul 2020 09:27:24 +0200
parents 13711ba8e81e
children edf5cc1ffd26
line wrap: on
line diff
--- a/configmix/yaml.py	Tue Jul 07 09:11:55 2020 +0200
+++ b/configmix/yaml.py	Tue Jul 07 09:27:24 2020 +0200
@@ -10,6 +10,10 @@
 
 from __future__ import division, print_function, absolute_import
 
+
+__all__ = ["safe_load", "safe_load_all", "load", "load_all"]
+
+
 try:
     from collections import OrderedDict
 except ImportError:
@@ -23,9 +27,6 @@
 from .compat import u
 
 
-__all__ = ["safe_load", "safe_load_all", "load", "load_all"]
-
-
 DictImpl = OrderedDict or dict