aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/d.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-06-14 00:42:26 -0400
committerEli Schwartz <eschwartz@archlinux.org>2022-07-03 14:11:31 -0400
commit0703ee0aef68e235c1e22d6448b79dfbbb5c8039 (patch)
tree0f7ba031362d926b726852d2070ecc8377bdb5bd /mesonbuild/compilers/d.py
parent46148f923b196e1b1d004e68d43edc2daca4dd25 (diff)
downloadmeson-0703ee0aef68e235c1e22d6448b79dfbbb5c8039.zip
meson-0703ee0aef68e235c1e22d6448b79dfbbb5c8039.tar.gz
meson-0703ee0aef68e235c1e22d6448b79dfbbb5c8039.tar.bz2
move various unused typing-only imports into type-checking blocks
Diffstat (limited to 'mesonbuild/compilers/d.py')
-rw-r--r--mesonbuild/compilers/d.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py
index 35ab024..f4fd0cd 100644
--- a/mesonbuild/compilers/d.py
+++ b/mesonbuild/compilers/d.py
@@ -11,6 +11,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+from __future__ import annotations
import os.path
import re
@@ -22,7 +23,7 @@ from .. import mlog
from ..arglist import CompilerArgs
from ..linkers import RSPFileSyntax
from ..mesonlib import (
- EnvironmentException, MachineChoice, version_compare, OptionKey, is_windows
+ EnvironmentException, version_compare, OptionKey, is_windows
)
from . import compilers
@@ -42,6 +43,7 @@ if T.TYPE_CHECKING:
from ..envconfig import MachineInfo
from ..environment import Environment
from ..linkers import DynamicLinker
+ from ..mesonlib import MachineChoice
CompilerMixinBase = Compiler
else: