diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-04-20 13:38:13 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-04-20 13:38:13 -0700 |
commit | cd8c3347887addc296c9befab5f9a2762780525e (patch) | |
tree | dc1f8a5151e38a7e4fa76dc44601624934571a5f | |
parent | 10c19e12062b4fecfada36138cd2c571559cdf2d (diff) | |
download | meson-cd8c3347887addc296c9befab5f9a2762780525e.zip meson-cd8c3347887addc296c9befab5f9a2762780525e.tar.gz meson-cd8c3347887addc296c9befab5f9a2762780525e.tar.bz2 |
mconf: cleanup up and sort imports
-rw-r--r-- | mesonbuild/mconf.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mesonbuild/mconf.py b/mesonbuild/mconf.py index 7a469cb..953b3d4 100644 --- a/mesonbuild/mconf.py +++ b/mesonbuild/mconf.py @@ -13,10 +13,15 @@ # limitations under the License. import os -from . import coredata, environment, mesonlib, build, mintro, mlog -from .ast import AstIDGenerator import typing as T +from . import build +from . import coredata +from . import environment +from . import mesonlib +from . import mintro +from . import mlog +from .ast import AstIDGenerator from .mesonlib import MachineChoice, OptionKey if T.TYPE_CHECKING: |