diff --git a/worlds/grinch/Client.py b/worlds/grinch/Client.py index eea69397..180415b8 100644 --- a/worlds/grinch/Client.py +++ b/worlds/grinch/Client.py @@ -1,5 +1,3 @@ -import asyncio -from os import write from typing import TYPE_CHECKING import NetUtils @@ -7,7 +5,6 @@ from .Locations import grinch_locations, GrinchLocation from .Items import ALL_ITEMS_TABLE, SLEIGH_PARTS_TABLE, MISSION_ITEMS_TABLE, GADGETS_TABLE, KEYS_TABLE, GrinchItemData import worlds._bizhawk as bizhawk from worlds._bizhawk.client import BizHawkClient -from worlds.Files import APDeltaPatch if TYPE_CHECKING: from worlds._bizhawk.context import BizHawkClientContext diff --git a/worlds/grinch/Rules.py b/worlds/grinch/Rules.py index 2b008aaf..fe3c486f 100644 --- a/worlds/grinch/Rules.py +++ b/worlds/grinch/Rules.py @@ -1,7 +1,5 @@ from typing import Callable -import inspect - from BaseClasses import CollectionState from worlds.AutoWorld import World from worlds.generic.Rules import add_rule diff --git a/worlds/grinch/__init__.py b/worlds/grinch/__init__.py index 05b0dfcb..21e9e1d4 100644 --- a/worlds/grinch/__init__.py +++ b/worlds/grinch/__init__.py @@ -5,7 +5,7 @@ from .Regions import connect_regions from .Rules import set_rules from .Client import * -from typing import ClassVar, Mapping, Any +from typing import ClassVar from worlds.AutoWorld import World