Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 27b69a0

Browse files
fix #12
1 parent dc8628a commit 27b69a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aiokeycloak/sessions/aiohttp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(
2929
def _load_http_method(self, http_method: HTTPMethodType) -> AioHTTPMethod:
3030
method: Any
3131
if http_method == HTTPMethodType.GET:
32-
method = AioHTTPMethod, self._client_session.get
32+
method = self._client_session.get
3333
elif http_method == HTTPMethodType.PUT:
3434
method = self._client_session.put
3535
elif http_method == HTTPMethodType.POST:

0 commit comments

Comments
 (0)