aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-10-29 22:45:04 +0300
committerGitHub <noreply@github.com>2021-10-29 22:45:04 +0300
commitaf85738dafc8b371c8b6dbcfba23e1cdb621dc8c (patch)
treeec0996a81a0a237080b9c674284b47426f3f28c9 /mesonbuild/build.py
parent7a12c911bf5478b0a762432985535a6a823b13ab (diff)
parent6849baa47633d2986c049cd68916bc9ce95ba2d0 (diff)
downloadmeson-af85738dafc8b371c8b6dbcfba23e1cdb621dc8c.zip
meson-af85738dafc8b371c8b6dbcfba23e1cdb621dc8c.tar.gz
meson-af85738dafc8b371c8b6dbcfba23e1cdb621dc8c.tar.bz2
Merge pull request #9375 from dcbaker/submit/windows-module-typing
Typing for the Windows module
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index e2251ea..02e8da9 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -2700,7 +2700,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):