diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-12-06 12:54:52 -0800 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-01-18 21:58:24 -0500 |
commit | 214ce0dc8b8a3617d0dc782c80efdc5d5ea0dca3 (patch) | |
tree | ec4810839a32ede5153019e254c0d3a13ece826a /mesonbuild/backend/backends.py | |
parent | a848dd3cce070a8d3b7c698704c6042c9431bdfe (diff) | |
download | meson-214ce0dc8b8a3617d0dc782c80efdc5d5ea0dca3.zip meson-214ce0dc8b8a3617d0dc782c80efdc5d5ea0dca3.tar.gz meson-214ce0dc8b8a3617d0dc782c80efdc5d5ea0dca3.tar.bz2 |
build: Fix return types of a couple of methods
These don't return `Target`, they return `BuildTarget | CustomTarget |
CustomTargetIndex`
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r-- | mesonbuild/backend/backends.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index 957b259..e43c8c7 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -1058,7 +1058,7 @@ class Backend: tests. """ result: T.Set[str] = set() - prospectives: T.Set[build.Target] = set() + prospectives: T.Set[T.Union[build.BuildTarget, build.CustomTarget, build.CustomTargetIndex]] = set() if isinstance(target, build.BuildTarget): prospectives.update(target.get_transitive_link_deps()) # External deps |