Skip to content

Commit

Permalink
Remove redunant type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
faph committed Nov 17, 2023
1 parent 8aa4383 commit 53e89a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/py_avro_schema/_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down

0 comments on commit 53e89a2

Please sign in to comment.