From 838367ca6040cef527955daf450639189b8cc931 Mon Sep 17 00:00:00 2001 From: Tristan Partin Date: Mon, 26 Sep 2022 16:58:14 -0500 Subject: [PATCH] Fix mypy lint Unused "type:ignore" --- mesonbuild/msubprojects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/msubprojects.py b/mesonbuild/msubprojects.py index f8c0b924c..ab527bb42 100755 --- a/mesonbuild/msubprojects.py +++ b/mesonbuild/msubprojects.py @@ -114,7 +114,7 @@ class Runner: self.wrap_resolver = copy.copy(r) self.wrap_resolver.dirname = os.path.join(r.subdir_root, self.wrap.directory) self.wrap_resolver.wrap = self.wrap - self.run_method: T.Callable[[], bool] = self.options.subprojects_func.__get__(self) # type: ignore + self.run_method: T.Callable[[], bool] = self.options.subprojects_func.__get__(self) self.log_queue: T.List[T.Tuple[mlog.TV_LoggableList, T.Any]] = [] def log(self, *args: mlog.TV_Loggable, **kwargs: T.Any) -> None: