fixed incorrectly tagged type

This commit is contained in:
Nicholas Dyer 2023-05-15 00:31:05 -04:00
parent 9669e6185d
commit 680a2cab75
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class GameSurface(pygame.Surface):
additional_args: Dictionary of additional arguments to send to the next surface after halting.
background: A Pygame surface that will be drawn behind all other elements.
"""
def __init__(self, game_res: int, resources_dir: str, game_fps: pygame.Surface):
def __init__(self, game_res: int, resources_dir: str, game_fps: int):
"""
Create a GameSurface object.
Args: