Skip to content

Commit

Permalink
YGO06: make sure it runs on python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Rensen3 committed May 18, 2024
1 parent 5e3c5de commit 2afa86b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions worlds/yugioh06/structure_deck.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
structure_contents: dict[str, set] = {
from typing import Dict, Set

structure_contents: Dict[str, Set] = {
"dragons_roar": {
"Luster Dragon",
"Armed Dragon LV3",
Expand Down Expand Up @@ -77,5 +79,5 @@
}


def get_deck_content_locations(deck: str) -> dict[str, str]:
def get_deck_content_locations(deck: str) -> Dict[str, str]:
return {f"{deck} {i}": content for i, content in enumerate(structure_contents[deck])}

0 comments on commit 2afa86b

Please sign in to comment.