diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2020-01-12 19:44:37 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2020-01-12 19:44:37 +0100 |
commit | 3a1b9001c61c412526934627d73f3874a97ec72e (patch) | |
tree | 8ea570ff6e97f27b648c8f72a628afb962afc0fc /astroid/rebuilder.py | |
parent | 6591ee396bdf62a659ed1e3db71d131510626b8c (diff) | |
download | astroid-git-3a1b9001c61c412526934627d73f3874a97ec72e.tar.gz |
Revert the redefinition of type_comment_kwonlyargs
Diffstat (limited to 'astroid/rebuilder.py')
-rw-r--r-- | astroid/rebuilder.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/astroid/rebuilder.py b/astroid/rebuilder.py index 1876605e..0190fdec 100644 --- a/astroid/rebuilder.py +++ b/astroid/rebuilder.py @@ -225,7 +225,6 @@ class TreeRebuilder: self.check_type_comment(child, parent=newnode) for child in node.kwonlyargs ] type_comment_posonlyargs = [] - type_comment_kwonlyargs = [] if PY38: type_comment_posonlyargs = [ self.check_type_comment(child, parent=newnode) |