mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
Core: MultiData typing (#5071)
This commit is contained in:
@@ -16,7 +16,7 @@ from Utils import deprecate
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from BaseClasses import MultiWorld, Item, Location, Tutorial, Region, Entrance
|
||||
from . import GamesPackage
|
||||
from NetUtils import GamesPackage, MultiData
|
||||
from settings import Group
|
||||
|
||||
perf_logger = logging.getLogger("performance")
|
||||
@@ -450,7 +450,7 @@ class World(metaclass=AutoWorldRegister):
|
||||
"""
|
||||
pass
|
||||
|
||||
def modify_multidata(self, multidata: Dict[str, Any]) -> None: # TODO: TypedDict for multidata?
|
||||
def modify_multidata(self, multidata: "MultiData") -> None:
|
||||
"""For deeper modification of server multidata."""
|
||||
pass
|
||||
|
||||
|
Reference in New Issue
Block a user