We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96d5c3d commit b0ff7efCopy full SHA for b0ff7ef
1 file changed
71_Poker/python/pokerhand/evaluation.py
@@ -25,12 +25,11 @@ class HandEvaluation:
25
hand_rank: HandRank
26
high_card: Card
27
discard_indices: list[int]
28
- _ctx: "_EvaluationContext | None"
+ _ctx: "_EvaluationContext"
29
30
def __init__(self, hand: "Hand"):
31
"""Perform evaluation of the provided hand."""
32
self.discard_indices = []
33
- self._ctx = None
34
self._evaluate(hand)
35
36
def __str__(self) -> str:
0 commit comments