mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-26 05:23:21 -07:00
move required_extensions to tuple
This commit is contained in:
@@ -41,7 +41,7 @@ class AutoPatchRegister(abc.ABCMeta):
|
||||
|
||||
class AutoPatchExtensionRegister(abc.ABCMeta):
|
||||
extension_types: ClassVar[Dict[str, AutoPatchExtensionRegister]] = {}
|
||||
required_extensions: List[str] = []
|
||||
required_extensions: ClassVar[Tuple[str]] = ()
|
||||
|
||||
def __new__(mcs, name: str, bases: Tuple[type, ...], dct: Dict[str, Any]) -> AutoPatchExtensionRegister:
|
||||
# construct class
|
||||
|
||||
Reference in New Issue
Block a user