diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2024-09-04 09:25:39 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2024-09-04 09:28:21 -0700 |
| commit | 05347536628bfe85ab51b41a19d1b70a742d3bd1 (patch) | |
| tree | ee64dec5efc80b90a5945f4063ecb720504a9e2c | |
| parent | d299add709ebaa2bdde77f7a20308a6eacda1d9a (diff) | |
| download | meson-05347536628bfe85ab51b41a19d1b70a742d3bd1.tar.gz | |
Add missing `__future__.annotations` imports
| -rw-r--r-- | mesonbuild/machinefile.py | 2 | ||||
| -rw-r--r-- | mesonbuild/options.py | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/mesonbuild/machinefile.py b/mesonbuild/machinefile.py index afeb4d056..bc290bef0 100644 --- a/mesonbuild/machinefile.py +++ b/mesonbuild/machinefile.py @@ -1,6 +1,8 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright 2013-2024 Contributors to the The Meson project +# Copyright © 2024 Intel Corporation +from __future__ import annotations import typing as T import configparser import os diff --git a/mesonbuild/options.py b/mesonbuild/options.py index d3d0c6789..020c2e623 100644 --- a/mesonbuild/options.py +++ b/mesonbuild/options.py @@ -1,6 +1,8 @@ # SPDX-License-Identifier: Apache-2.0 # Copyright 2013-2024 Contributors to the The Meson project +# Copyright © 2024 Intel Corporation +from __future__ import annotations from collections import OrderedDict from itertools import chain from functools import total_ordering |
