aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/ast/interpreter.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-06-12 22:39:31 -0400
committerEli Schwartz <eschwartz@archlinux.org>2022-07-03 14:11:30 -0400
commit075ccc68bec1f3eb74e2089950b48627811354ac (patch)
tree8de7e084d3ca50369230369cb2de3cf086d78cd6 /mesonbuild/ast/interpreter.py
parent44c95087d05f93558d60113187d35a2f251e2a77 (diff)
downloadmeson-075ccc68bec1f3eb74e2089950b48627811354ac.zip
meson-075ccc68bec1f3eb74e2089950b48627811354ac.tar.gz
meson-075ccc68bec1f3eb74e2089950b48627811354ac.tar.bz2
sort imports for neatness
Diffstat (limited to 'mesonbuild/ast/interpreter.py')
-rw-r--r--mesonbuild/ast/interpreter.py7
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