diff --git a/src/py_avro_schema/_schemas.py b/src/py_avro_schema/_schemas.py index f36eedf..275f172 100644 --- a/src/py_avro_schema/_schemas.py +++ b/src/py_avro_schema/_schemas.py @@ -635,7 +635,7 @@ def __init__(self, py_type: Type[Union[Any]], namespace: Optional[str] = None, o super().__init__(py_type, namespace=namespace, options=options) py_type = _type_from_annotated(py_type) args = get_args(py_type) - self.item_schemas = [_schema_obj(arg, namespace=namespace, options=options) for arg in args] # type: ignore + self.item_schemas = [_schema_obj(arg, namespace=namespace, options=options) for arg in args] def data(self, names: NamesType) -> JSONArray: """Return the schema data"""