Skip to content

Commit

Permalink
umu_runtime: add ignore for mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
R1kaB3rN committed Nov 29, 2024
1 parent b60384d commit 5d81fab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion umu/umu_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,8 @@ def _restore_umu_platformid(
)
return None

return resp.data.decode(encoding="utf-8")
# False positive from mypy.
return resp.data.decode(encoding="utf-8") # type: ignore


def _update_umu_platform(
Expand Down

0 comments on commit 5d81fab

Please sign in to comment.