diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-06-12 22:39:31 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-07-03 14:11:30 -0400 |
commit | 075ccc68bec1f3eb74e2089950b48627811354ac (patch) | |
tree | 8de7e084d3ca50369230369cb2de3cf086d78cd6 /mesonbuild/ast | |
parent | 44c95087d05f93558d60113187d35a2f251e2a77 (diff) | |
download | meson-075ccc68bec1f3eb74e2089950b48627811354ac.zip meson-075ccc68bec1f3eb74e2089950b48627811354ac.tar.gz meson-075ccc68bec1f3eb74e2089950b48627811354ac.tar.bz2 |
sort imports for neatness
Diffstat (limited to 'mesonbuild/ast')
-rw-r--r-- | mesonbuild/ast/interpreter.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mesonbuild/ast/interpreter.py b/mesonbuild/ast/interpreter.py index 2e18a6a..63eb3e2 100644 --- a/mesonbuild/ast/interpreter.py +++ b/mesonbuild/ast/interpreter.py @@ -15,6 +15,10 @@ # This class contains the basic functionality needed to run any interpreter # or an interpreter-based tool. +import os +import sys +import typing as T + from .visitor import AstVisitor from .. import mparser, mesonlib from .. import environment @@ -60,9 +64,6 @@ from ..mparser import ( UMinusNode, ) -import os, sys -import typing as T - if T.TYPE_CHECKING: from ..interpreter import Interpreter |