add missing imports for future annotations

pull/12064/merge
Eli Schwartz 1 year ago committed by Xavier Claessens
parent 46cedeb431
commit 1cf0ed0997
  1. 1
      mesonbuild/_pathlib.py
  2. 2
      mesonbuild/compilers/asm.py
  3. 3
      mesonbuild/scripts/test_loaded_modules.py
  4. 2
      mesonbuild/scripts/yasm.py

@ -29,6 +29,7 @@
python bugs are fixed and it is OK to tell our users to "just upgrade
python".
'''
from __future__ import annotations
import pathlib
import os

@ -1,3 +1,5 @@
from __future__ import annotations
import os
import typing as T

@ -1,6 +1,9 @@
from __future__ import annotations
import sys
import json
import typing as T
from . import meson_exe
# This script is used by run_unittests.py to verify we don't load too many

@ -1,3 +1,5 @@
from __future__ import annotations
import argparse
import subprocess
import typing as T

Loading…
Cancel
Save