Skip to content

Commit 3298c19

Browse files
committed
mypy
1 parent dca5a16 commit 3298c19

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/pandas_openscm/accessors/series.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,12 @@ def mi_loc(
325325
...
326326
```
327327
"""
328-
return mi_loc(self._series, locator)
328+
res = mi_loc(self._series, locator)
329+
330+
# Ignore return type
331+
# because I've done something wrong with how I've set this up.
332+
# Figuring this out is a job for another day
333+
return res # type: ignore
329334

330335
def set_index_levels(
331336
self,

0 commit comments

Comments
 (0)