mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 17:34:49 +08:00
Pyupgrade to Python 3.9 (#4718)
* Pyupgrade to Python 3.9 * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -135,7 +135,7 @@ class PokerHand:
|
||||
"""Returns the self hand"""
|
||||
return self._hand
|
||||
|
||||
def compare_with(self, other: "PokerHand") -> str:
|
||||
def compare_with(self, other: PokerHand) -> str:
|
||||
"""
|
||||
Determines the outcome of comparing self hand with other hand.
|
||||
Returns the output as 'Win', 'Loss', 'Tie' according to the rules of
|
||||
@ -220,7 +220,7 @@ class PokerHand:
|
||||
else:
|
||||
return name + f", {high}"
|
||||
|
||||
def _compare_cards(self, other: "PokerHand") -> str:
|
||||
def _compare_cards(self, other: PokerHand) -> str:
|
||||
# Enumerate gives us the index as well as the element of a list
|
||||
for index, card_value in enumerate(self._card_values):
|
||||
if card_value != other._card_values[index]:
|
||||
|
Reference in New Issue
Block a user