Skip to content

Commit 1c81235

Browse files
committed
Make mypy happy
1 parent b19c60b commit 1c81235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wom/services/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def _get_request_func(self, method: str) -> t.Callable[..., t.Awaitable[t.Any]]:
109109
if not hasattr(self, "_method_mapping"):
110110
raise RuntimeError("HttpService.start was never called, aborting...")
111111

112-
return self._method_mapping[method]
112+
return self._method_mapping[method] # type: ignore[return-value]
113113

114114
async def _init_session(self) -> None:
115115
self._session = aiohttp.ClientSession(

0 commit comments

Comments
 (0)