diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-09-01 19:58:10 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-09-08 20:15:58 +0200 |
commit | e681235e5fe3ee0a40dd6a3f5922c2c4b0cf98b4 (patch) | |
tree | 947e279889b5f7682dcd4c11beea279c24cb67bf /mesonbuild/ast | |
parent | 47373a2438c0fdeedd229b921c9d7e8dc1fc956a (diff) | |
download | meson-e681235e5fe3ee0a40dd6a3f5922c2c4b0cf98b4.zip meson-e681235e5fe3ee0a40dd6a3f5922c2c4b0cf98b4.tar.gz meson-e681235e5fe3ee0a40dd6a3f5922c2c4b0cf98b4.tar.bz2 |
typing: fix code review
Diffstat (limited to 'mesonbuild/ast')
-rw-r--r-- | mesonbuild/ast/introspection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/ast/introspection.py b/mesonbuild/ast/introspection.py index 19fedbf..d7d982e 100644 --- a/mesonbuild/ast/introspection.py +++ b/mesonbuild/ast/introspection.py @@ -296,7 +296,7 @@ class IntrospectionInterpreter(AstInterpreter): return None def is_subproject(self) -> bool: - return str(self.subproject) != '' + return self.subproject != '' def analyze(self) -> None: self.load_root_meson_file() |