From 291f0aaa4268b1f1c01d9d320160b72d45909891 Mon Sep 17 00:00:00 2001 From: Holoti <106698219+Holoti@users.noreply.github.com> Date: Fri, 3 Jan 2025 13:25:16 +0500 Subject: [PATCH] fix: proper type definition on Application.indexes --- Engine/Application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/Application.py b/Engine/Application.py index 99dfb0c..f00abf6 100644 --- a/Engine/Application.py +++ b/Engine/Application.py @@ -18,7 +18,7 @@ def __init__(self, window_size: tuple, init_file: str): self.flatten_render_tree: list = [] self.flatten_update_tree: list = [] - self.indexes: (int, int) = (0, 0) + self.indexes: tuple[int, int] = (0, 0) self.scene_system: SceneSystem = SceneSystem(self) self.control_system: ControlSystem = ControlSystem(self) self.ui_system: UISystem = UISystem(self)