Skip to content

Commit 47723d3

Browse files
committed
Drop type ignore
1 parent b541f6d commit 47723d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray_sentinel/esa_safe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def parse_tag(
4444
) -> Dict[str, Any]:
4545
schema = cached_sentinel1_schemas(schema_type)
4646
if hasattr(xml_path, "seek"):
47-
xml_path.seek(0) # type: ignore
47+
xml_path.seek(0)
4848
xml_tree = ElementTree.parse(xml_path)
4949
tag_dict: Any = schema.decode(xml_tree, query, validation=validation)
5050
assert isinstance(tag_dict, dict), f"{type(tag_dict)} is not dict"

0 commit comments

Comments
 (0)