comparison configmix/__init__.py @ 502:4f90e1eb7af8

Make quote() and unquote() module globals and also export from configmix
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 18 Dec 2021 01:26:41 +0100
parents 89bbb66aff02
children 16f077229ec2
comparison
equal deleted inserted replaced
501:1c83389fb8dd 502:4f90e1eb7af8
30 import io 30 import io
31 import os 31 import os
32 import re 32 import re
33 33
34 from .compat import u2fs 34 from .compat import u2fs
35 from .config import Configuration 35 from .config import Configuration, quote, unquote # noqa: F401
36 from . import constants 36 from . import constants
37 37
38 38
39 def load(*files, **kwargs): 39 def load(*files, **kwargs):
40 """Load the given configuration files, merge them in the given order 40 """Load the given configuration files, merge them in the given order