fix missing tuple ellipsis

This commit is contained in:
Silvris
2024-03-20 15:50:42 -05:00
parent be970d81ec
commit 59fca0bf81

View File

@@ -41,7 +41,7 @@ class AutoPatchRegister(abc.ABCMeta):
class AutoPatchExtensionRegister(abc.ABCMeta):
extension_types: ClassVar[Dict[str, AutoPatchExtensionRegister]] = {}
required_extensions: ClassVar[Tuple[str]] = ()
required_extensions: ClassVar[Tuple[str, ...]] = ()
def __new__(mcs, name: str, bases: Tuple[type, ...], dct: Dict[str, Any]) -> AutoPatchExtensionRegister:
# construct class