Skip to content

Commit 186ca41

Browse files
dclaganiereFlySniper
authored andcommitted
OoT: Update Utils.py (ArchipelagoMW#2310)
Removed optional maxsize parameter, setting it to the default of 128.
1 parent cfc9184 commit 186ca41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worlds/oot/Utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def data_path(*args):
1111
return os.path.join(os.path.dirname(__file__), 'data', *args)
1212

1313

14-
@lru_cache(maxsize=13) # Cache Overworld.json and the 12 dungeons
14+
@lru_cache
1515
def read_json(file_path):
1616
json_string = ""
1717
with io.open(file_path, 'r') as file:

0 commit comments

Comments
 (0)