Fix the compatibility docstring

This commit is contained in:
Dave Halter
2020-07-02 02:03:34 +02:00
parent 9838040ca3
commit 782c561e86
12 changed files with 13 additions and 33 deletions
-2
View File
@@ -32,8 +32,6 @@ def _iter_nodes_for_param(param_name):
argument = name.parent
if argument.type == 'argument' \
and argument.children[0] == '*' * param_name.star_count:
# No support for Python 2.7 here, but they are end-of-life
# anyway
trailer = search_ancestor(argument, 'trailer')
if trailer is not None: # Make sure we're in a function
context = execution_context.create_context(trailer)