mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Core: purge py3.8 and py3.9 (#3973)
Co-authored-by: Remy Jette <remy@remyjette.com> Co-authored-by: Jouramie <16137441+Jouramie@users.noreply.github.com> Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com>
This commit is contained in:
@@ -1,7 +1,4 @@
|
||||
from typing import Dict, List
|
||||
|
||||
|
||||
LOCATIONS: Dict[str, List[str]] = {
|
||||
LOCATIONS: dict[str, list[str]] = {
|
||||
"Ninja Village - Nest": [
|
||||
"Ninja Village - Candle",
|
||||
"Ninja Village - Astral Seed",
|
||||
@@ -201,7 +198,7 @@ LOCATIONS: Dict[str, List[str]] = {
|
||||
}
|
||||
|
||||
|
||||
SUB_REGIONS: Dict[str, List[str]] = {
|
||||
SUB_REGIONS: dict[str, list[str]] = {
|
||||
"Ninja Village": [
|
||||
"Right",
|
||||
],
|
||||
@@ -385,7 +382,7 @@ SUB_REGIONS: Dict[str, List[str]] = {
|
||||
|
||||
|
||||
# order is slightly funky here for back compat
|
||||
MEGA_SHARDS: Dict[str, List[str]] = {
|
||||
MEGA_SHARDS: dict[str, list[str]] = {
|
||||
"Autumn Hills - Lakeside Checkpoint": ["Autumn Hills Mega Shard"],
|
||||
"Forlorn Temple - Outside Shop": ["Hidden Entrance Mega Shard"],
|
||||
"Catacombs - Top Left": ["Catacombs Mega Shard"],
|
||||
@@ -414,7 +411,7 @@ MEGA_SHARDS: Dict[str, List[str]] = {
|
||||
}
|
||||
|
||||
|
||||
REGION_CONNECTIONS: Dict[str, Dict[str, str]] = {
|
||||
REGION_CONNECTIONS: dict[str, dict[str, str]] = {
|
||||
"Menu": {"Tower HQ": "Start Game"},
|
||||
"Tower HQ": {
|
||||
"Autumn Hills - Portal": "ToTHQ Autumn Hills Portal",
|
||||
@@ -436,7 +433,7 @@ REGION_CONNECTIONS: Dict[str, Dict[str, str]] = {
|
||||
|
||||
|
||||
# regions that don't have sub-regions
|
||||
LEVELS: List[str] = [
|
||||
LEVELS: list[str] = [
|
||||
"Menu",
|
||||
"Tower HQ",
|
||||
"The Shop",
|
||||
|
Reference in New Issue
Block a user