From b8c52c3a923d39caf0075975c2f7e6b620f25707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Bed=C5=99ich?= Date: Tue, 1 Dec 2020 09:01:10 +0100 Subject: [PATCH] Fix sync example (#741) --- docs/api_lib_auth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api_lib_auth.md b/docs/api_lib_auth.md index 6dd19c99..e2df30f7 100644 --- a/docs/api_lib_auth.md +++ b/docs/api_lib_auth.md @@ -84,7 +84,7 @@ class Auth: self.host = host self.access_token = access_token - async def request(self, method: str, path: str, **kwargs) -> requests.Response: + def request(self, method: str, path: str, **kwargs) -> requests.Response: """Make a request.""" headers = kwargs.get("headers")