diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-10-08 14:47:57 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-10-09 21:34:54 -0700 |
commit | 0d52a6161a7572b6132643d16f8a16ab7ba6cf66 (patch) | |
tree | 7ef4e29d85bc2c61469f636f782f230aa768ac08 | |
parent | 88060d47c11885f4b820c95fecd5dde30936fac7 (diff) | |
download | meson-0d52a6161a7572b6132643d16f8a16ab7ba6cf66.zip meson-0d52a6161a7572b6132643d16f8a16ab7ba6cf66.tar.gz meson-0d52a6161a7572b6132643d16f8a16ab7ba6cf66.tar.bz2 |
build: Add missing type annotation
-rw-r--r-- | mesonbuild/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 311732e..1a365df 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -2684,7 +2684,7 @@ class CustomTargetIndex(HoldableObject): def get_filename(self) -> str: return self.output - def get_id(self): + def get_id(self) -> str: return self.target.get_id() def get_all_link_deps(self): |