mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
YGO06: make sure it runs on 3.8 support (#3324)
* YGO06: make sure it runs on python 3.8 * YGO06: change merge of dict, so it runs on python 3.8
This commit is contained in:
@@ -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",
|
||||
@@ -77,5 +79,5 @@ structure_contents: dict[str, set] = {
|
||||
}
|
||||
|
||||
|
||||
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])}
|
||||
|
Reference in New Issue
Block a user