Skip to content

Commit

Permalink
Revert to old naming for GamesPackage.
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhar committed Nov 8, 2023
1 parent 195e0e0 commit 2440937
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions worlds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"world_sources",
"local_folder",
"user_folder",
"GamePackage",
"GamesPackage",
"DataPackage",
}


class GamePackage(TypedDict, total=False):
class GamesPackage(TypedDict, total=False):
item_name_groups: Dict[str, List[str]]
item_name_to_id: Dict[str, int]
location_name_groups: Dict[str, List[str]]
Expand All @@ -31,7 +31,7 @@ class GamePackage(TypedDict, total=False):


class DataPackage(TypedDict):
games: Dict[str, GamePackage]
games: Dict[str, GamesPackage]


class WorldSource(NamedTuple):
Expand Down

0 comments on commit 2440937

Please sign in to comment.