Skip to content

Commit

Permalink
fix py3.8 no cache
Browse files Browse the repository at this point in the history
  • Loading branch information
jjshoots committed Feb 23, 2024
1 parent 1f804c2 commit 8d8c6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/roms/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import requests


@functools.cache
@functools.lru_cache(maxsize=1)
def _get_all_rom_hashes() -> dict[str, str]:
# this is a map of {rom.bin : md5 checksum}
with open(Path(__file__).parent / "md5.json") as f:
Expand Down

0 comments on commit 8d8c6f4

Please sign in to comment.