refactor: Remove a comment
This commit is contained in:
parent
2be2b802c0
commit
742792b6c1
1 changed files with 0 additions and 1 deletions
|
|
@ -26,7 +26,6 @@ def _get_code_entities(node: parso.tree.NodeOrLeaf) -> List[Dict[str, any]]:
|
||||||
if not hasattr(node, 'children'):
|
if not hasattr(node, 'children'):
|
||||||
return code_entity_list
|
return code_entity_list
|
||||||
|
|
||||||
# Process nodes of type 'name', which correspond to code entities
|
|
||||||
name_nodes = (child for child in node.children if child.type == 'name')
|
name_nodes = (child for child in node.children if child.type == 'name')
|
||||||
for name_node in name_nodes:
|
for name_node in name_nodes:
|
||||||
code_entity = {
|
code_entity = {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue