Skip to content

Commit

Permalink
Fix pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kraju3 committed Dec 9, 2024
1 parent 8496d83 commit c6e1816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nylas/handler/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def _validate_response(response: Response) -> dict:

return json

def _validate_download_response(response:Response, stream = False) -> Union[bytes, Response, dict]:
def _validate_download_response(response:Response) -> Union[bytes, Response, dict]:
if response.ok:
return response.content
return _validate_response(response)
Expand Down

0 comments on commit c6e1816

Please sign in to comment.