diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-08-28 18:00:50 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-09-08 20:15:55 +0200 |
commit | 3489442848c84c05ce0fb8a696d3b5ae0e46daaa (patch) | |
tree | 5f30565dd585841cae06726b93d3c41548f2e288 /mesonbuild/ast/visitor.py | |
parent | 9c1e72202de8015e16a4ba2ccf8ea50c10f474f7 (diff) | |
download | meson-3489442848c84c05ce0fb8a696d3b5ae0e46daaa.zip meson-3489442848c84c05ce0fb8a696d3b5ae0e46daaa.tar.gz meson-3489442848c84c05ce0fb8a696d3b5ae0e46daaa.tar.bz2 |
typing: completely type ast
Diffstat (limited to 'mesonbuild/ast/visitor.py')
-rw-r--r-- | mesonbuild/ast/visitor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/ast/visitor.py b/mesonbuild/ast/visitor.py index 451020d..0f2265c 100644 --- a/mesonbuild/ast/visitor.py +++ b/mesonbuild/ast/visitor.py @@ -18,7 +18,7 @@ from .. import mparser class AstVisitor: - def __init__(self): + def __init__(self) -> None: pass def visit_default_func(self, node: mparser.BaseNode) -> None: |