Skip to content

Commit

Permalink
Changed type hint trying to fix errors with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
im-voracity committed Mar 24, 2024
1 parent 9745cb3 commit 8ca64ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hotmart_python/hotmart.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ def _make_request(self,
url: str,
headers: Optional[Dict[str, str]] = None,
params: Optional[Dict[str, Any]] = None,
body: Optional[Dict[str, str]] = None,
log_level: Optional[int] = None) -> Dict[str, Any] | List[Dict[str, Any]]:
body: Optional[Dict[str, str]] = None, log_level: Optional[int] = None) -> \
List[Dict[str, Any]]:
"""
Makes a request to the given url.
:param method: The request method (e.g, requests.get, requests.post).
Expand Down

0 comments on commit 8ca64ea

Please sign in to comment.