Skip to content

Commit

Permalink
Remove optionality of list[InferenceResult]
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed May 6, 2023
1 parent 30f249d commit a79a2a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astroid/inference_tip.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
_P = ParamSpec("_P")

_cache: dict[
tuple[InferFn, NodeNG, InferenceContext | None], list[InferenceResult] | None
tuple[InferFn, NodeNG, InferenceContext | None], list[InferenceResult]
] = {}

_CURRENTLY_INFERRING: set[tuple[InferFn, NodeNG]] = set()
Expand Down

0 comments on commit a79a2a7

Please sign in to comment.