diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2023-08-10 20:51:45 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz@archlinux.org> | 2023-08-11 13:37:17 -0400 |
| commit | a01418db0a37908cc2504adbb0cf56d333348f9a (patch) | |
| tree | 6463a2f91154092fd7f1aeeb72f744258daa6ff8 /mesonbuild/envconfig.py | |
| parent | 03a2a3a6773785e087b296e9e6ff6791c6068f60 (diff) | |
| download | meson-a01418db0a37908cc2504adbb0cf56d333348f9a.tar.gz | |
remove useless type annotations
These annotations all had a default initializer of the correct type, or
a parent class annotation.
Diffstat (limited to 'mesonbuild/envconfig.py')
| -rw-r--r-- | mesonbuild/envconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py index 7e0c56703..56dee650d 100644 --- a/mesonbuild/envconfig.py +++ b/mesonbuild/envconfig.py @@ -161,7 +161,7 @@ class Properties: self, properties: T.Optional[T.Dict[str, T.Optional[T.Union[str, bool, int, T.List[str]]]]] = None, ): - self.properties = properties or {} # type: T.Dict[str, T.Optional[T.Union[str, bool, int, T.List[str]]]] + self.properties = properties or {} def has_stdlib(self, language: str) -> bool: return language + '_stdlib' in self.properties |
