fix: py3.8 compatibility

This commit is contained in:
2024-08-06 12:32:52 +08:00
parent 4e799034d7
commit 03696650ea
3 changed files with 18 additions and 3 deletions

View File

@ -7,7 +7,7 @@ from arcaea_offline.constants.play_result import ScoreLowerLimits
class PlayResultCalculators:
@staticmethod
def score_possible_range(notes: int, pure: int, far: int) -> tuple[int, int]:
def score_possible_range(notes: int, pure: int, far: int) -> Tuple[int, int]:
"""
Returns the possible range of score based on the given values.