summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Partin <tristan@partin.io>2022-09-26 16:58:14 -0500
committerNirbheek Chauhan <nirbheek@centricular.com>2022-10-01 12:47:00 +0530
commita58315a8123a45b727662679a0553ed3813ad62a (patch)
tree08526c9c643377320e9073beac37ce6a20851629
parent23c8a092d18234248ef274c0a405b7d1516d335b (diff)
downloadmeson-a58315a8123a45b727662679a0553ed3813ad62a.tar.gz
Fix mypy lint
Unused "type:ignore"
-rwxr-xr-xmesonbuild/msubprojects.py2
1 files changed, 1 insertions, 1 deletions
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: