From 392fe65313a94ebfd7e0f70c8f7c3c7365bcff1c Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 29 Apr 2024 13:38:29 -0500 Subject: Lingo: Fix world load on frozen 3.8 (#3220) * Lingo: Fix world load on frozen 3.8 * Fixed absolute imports in unit test * Made unpickling safer --- test/TestDatafile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/TestDatafile.py') diff --git a/test/TestDatafile.py b/test/TestDatafile.py index 9f4e9da..60acb3e 100644 --- a/test/TestDatafile.py +++ b/test/TestDatafile.py @@ -1,8 +1,8 @@ import os import unittest -from worlds.lingo.static_logic import HASHES -from worlds.lingo.utils.pickle_static_data import hash_file +from ..static_logic import HASHES +from ..utils.pickle_static_data import hash_file class TestDatafile(unittest.TestCase): -- cgit 1.4.1