diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-08-02 13:58:27 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-08-03 14:03:33 -0700 |
commit | bc31c2307411b5fa7c1e0ccb058d1bdbdc2c7b45 (patch) | |
tree | 4406994ce9452ef7aa57c26798776c69d367582d /mesonbuild | |
parent | daf63fc377502f70bc7150c0fefbcdbf968b33a3 (diff) | |
download | meson-bc31c2307411b5fa7c1e0ccb058d1bdbdc2c7b45.zip meson-bc31c2307411b5fa7c1e0ccb058d1bdbdc2c7b45.tar.gz meson-bc31c2307411b5fa7c1e0ccb058d1bdbdc2c7b45.tar.bz2 |
build: Add annotation to CustomTargetIndex.get_subdir
Diffstat (limited to 'mesonbuild')
-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 17d31e8..98954ab 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -2566,7 +2566,7 @@ class CustomTargetIndex(HoldableObject): def get_outputs(self) -> T.List[str]: return [self.output] - def get_subdir(self): + def get_subdir(self) -> str: return self.target.get_subdir() def get_filename(self): |