Skip to content

Commit 10e6a50

Browse files
Add return type annotation
1 parent f565d7b commit 10e6a50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylint/checkers/variables.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ def _uncertain_nodes_in_except_blocks(found_nodes, node, node_statement):
736736
@staticmethod
737737
def _uncertain_nodes_in_try_blocks_when_evaluating_finally_blocks(
738738
found_nodes: List[nodes.NodeNG], node_statement: nodes.Statement
739-
):
739+
) -> List[nodes.NodeNG]:
740740
uncertain_nodes: List[nodes.NodeNG] = []
741741
(
742742
closest_try_finally_ancestor,

0 commit comments

Comments
 (0)