From 43816f664395232bfe536c2aa69d1aa3ee0b04f5 Mon Sep 17 00:00:00 2001 From: Charles Brunet Date: Tue, 12 Nov 2024 08:27:33 -0500 Subject: fixes for mypy --- mesonbuild/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 27d60c854..e94f75faa 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1350,7 +1350,7 @@ class BuildTarget(Target): def get_source_subdir(self): return self.subdir - def get_sources(self): + def get_sources(self) -> T.List[File]: return self.sources def get_objects(self) -> T.List[T.Union[str, 'File', 'ExtractedObjects']]: @@ -2566,7 +2566,7 @@ class BothLibraries(SecondLevelHolder): def __repr__(self) -> str: return f'' - def get(self, lib_type: T.Literal['static', 'shared']) -> LibTypes: + def get(self, lib_type: T.Literal['static', 'shared']) -> T.Union[StaticLibrary, SharedLibrary]: if lib_type == 'static': return self.static if lib_type == 'shared': -- cgit v1.2.3