Mercurial > hgrepos > Python > libs > ConfigMix
diff configmix/ini.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 | 2cfd670281ae |
line wrap: on
line diff
--- a/configmix/ini.py Tue Jul 07 09:11:55 2020 +0200 +++ b/configmix/ini.py Tue Jul 07 09:27:24 2020 +0200 @@ -9,6 +9,11 @@ from __future__ import division, absolute_import, print_function + +__all__ = ["INIConfigParser", "NoSectionError", "NoOptionError", + "load"] + + import sys import os import io @@ -35,10 +40,6 @@ from .compat import u, u2fs -__all__ = ["INIConfigParser", "NoSectionError", "NoOptionError", - "load"] - - class INIConfigParser(_ConfigParserBase): """A case sensitive config parser that returns all-unicode string
