From 53e89a2492fe3867d54567f3e0463a252342545c Mon Sep 17 00:00:00 2001 From: faph Date: Fri, 17 Nov 2023 16:06:23 +0000 Subject: [PATCH] Remove redunant type ignore --- src/py_avro_schema/_schemas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"""