Add missing `__future__.annotations` imports

pull/13634/head
Dylan Baker 6 months ago
parent d299add709
commit 0534753662
  1. 2
      mesonbuild/machinefile.py
  2. 2
      mesonbuild/options.py

@ -1,6 +1,8 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
# Copyright 2013-2024 Contributors to the The Meson project # Copyright 2013-2024 Contributors to the The Meson project
# Copyright © 2024 Intel Corporation
from __future__ import annotations
import typing as T import typing as T
import configparser import configparser
import os import os

@ -1,6 +1,8 @@
# SPDX-License-Identifier: Apache-2.0 # SPDX-License-Identifier: Apache-2.0
# Copyright 2013-2024 Contributors to the The Meson project # Copyright 2013-2024 Contributors to the The Meson project
# Copyright © 2024 Intel Corporation
from __future__ import annotations
from collections import OrderedDict from collections import OrderedDict
from itertools import chain from itertools import chain
from functools import total_ordering from functools import total_ordering

Loading…
Cancel
Save