Skip to content

Commit a58315a

Browse files
tristan957nirbheek
authored andcommitted
Fix mypy lint
Unused "type:ignore"
1 parent 23c8a09 commit a58315a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mesonbuild/msubprojects.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def __post_init__(self, r: Resolver) -> None:
114114
self.wrap_resolver = copy.copy(r)
115115
self.wrap_resolver.dirname = os.path.join(r.subdir_root, self.wrap.directory)
116116
self.wrap_resolver.wrap = self.wrap
117-
self.run_method: T.Callable[[], bool] = self.options.subprojects_func.__get__(self) # type: ignore
117+
self.run_method: T.Callable[[], bool] = self.options.subprojects_func.__get__(self)
118118
self.log_queue: T.List[T.Tuple[mlog.TV_LoggableList, T.Any]] = []
119119

120120
def log(self, *args: mlog.TV_Loggable, **kwargs: T.Any) -> None:

0 commit comments

Comments
 (0)