aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/ast/interpreter.py
diff options
context:
space:
mode:
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