We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b541f6d commit 47723d3Copy full SHA for 47723d3
xarray_sentinel/esa_safe.py
@@ -44,7 +44,7 @@ def parse_tag(
44
) -> Dict[str, Any]:
45
schema = cached_sentinel1_schemas(schema_type)
46
if hasattr(xml_path, "seek"):
47
- xml_path.seek(0) # type: ignore
+ xml_path.seek(0)
48
xml_tree = ElementTree.parse(xml_path)
49
tag_dict: Any = schema.decode(xml_tree, query, validation=validation)
50
assert isinstance(tag_dict, dict), f"{type(tag_dict)} is not dict"
0 commit comments