From 680a2cab75848573a23f1db429645b48987ee2e7 Mon Sep 17 00:00:00 2001 From: Nicholas Dyer Date: Mon, 15 May 2023 00:31:05 -0400 Subject: [PATCH] fixed incorrectly tagged type --- pocket_friends/elements/surface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pocket_friends/elements/surface.py b/pocket_friends/elements/surface.py index 3722b73..69a387c 100644 --- a/pocket_friends/elements/surface.py +++ b/pocket_friends/elements/surface.py @@ -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: