Mercurial > hgrepos > Python > libs > ConfigMix
diff configmix/variables.py @ 250:ff964825a75a
Style: placement of "__all__"
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Tue, 07 Jul 2020 09:27:24 +0200 |
| parents | 57ff12610dc5 |
| children | da1596034954 |
line wrap: on
line diff
--- a/configmix/variables.py Tue Jul 07 09:11:55 2020 +0200 +++ b/configmix/variables.py Tue Jul 07 09:27:24 2020 +0200 @@ -9,6 +9,10 @@ from __future__ import division, absolute_import, print_function + +__all__ = [] + + import os import platform from functools import wraps @@ -16,9 +20,6 @@ from .compat import PY2, native_os_str_to_text, u -__all__ = [] - - _MARKER = object()
