Skip to content

Commit b88bccd

Browse files
style: Fix linting issue introduced
1 parent 745fd65 commit b88bccd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aignostics/wsi/_openslide_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ def _parse_xml_image_description(self, xml_string: str) -> dict[str, Any]: # no
109109
value_type = value_elem.get("type", "")
110110

111111
if value_type == "gint":
112-
value = int(value) # type: ignore[assignment]
112+
value = int(value)
113113
elif value_type == "gdouble":
114-
value = float(value) # type: ignore[assignment]
114+
value = float(value)
115115
elif value_type == "VipsRefString":
116116
# Handle special libvips string properties
117117
if name == "aix-libVips-version":

0 commit comments

Comments
 (0)