From 210d6f81eb188aa6dfbdcc46191f31037f7a8d28 Mon Sep 17 00:00:00 2001 From: Seldom <38388947+Seldom-SE@users.noreply.github.com> Date: Thu, 20 Jul 2023 01:49:52 -0700 Subject: [PATCH] Terraria: Fix Python 3.8 compat (#1994) --- worlds/terraria/Checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/terraria/Checks.py b/worlds/terraria/Checks.py index 3e09d178..b6be4525 100644 --- a/worlds/terraria/Checks.py +++ b/worlds/terraria/Checks.py @@ -191,7 +191,7 @@ def validate_conditions( def mark_progression( conditions: List[ Tuple[ - bool, int, Union[str, tuple[Union[bool, None], list]], Union[str, int, None] + bool, int, Union[str, Tuple[Union[bool, None], list]], Union[str, int, None] ] ], progression: Set[str],