aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/asm.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-08-15 23:00:10 -0400
committerXavier Claessens <xclaesse@gmail.com>2023-10-20 18:07:05 -0400
commit1cf0ed0997de355d15d9418448423ecf06a62467 (patch)
treede3761ec51f1fa1d5dbb3bbf1d9e00c3fa5ea912 /mesonbuild/compilers/asm.py
parent46cedeb431a67cde1c26c6d936bdd84ea8392d6f (diff)
downloadmeson-1cf0ed0997de355d15d9418448423ecf06a62467.zip
meson-1cf0ed0997de355d15d9418448423ecf06a62467.tar.gz
meson-1cf0ed0997de355d15d9418448423ecf06a62467.tar.bz2
add missing imports for future annotations
Diffstat (limited to 'mesonbuild/compilers/asm.py')
-rw-r--r--mesonbuild/compilers/asm.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/compilers/asm.py b/mesonbuild/compilers/asm.py
index 392a082..09cf9e1 100644
--- a/mesonbuild/compilers/asm.py
+++ b/mesonbuild/compilers/asm.py
@@ -1,3 +1,5 @@
+from __future__ import annotations
+
import os
import typing as T