Skip to content

Commit

Permalink
fix: DankMidsClientResponseError (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Nov 10, 2023
1 parent 0c6a995 commit d25a88c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dank_mids/_exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(
request: "PartialRequest",
) -> None:
self.request = request
super().__init__(exc.request_info, exc.history, code=exc.code, status=exc.status, message=exc.message, headers=exc.headers)
super().__init__(exc.request_info, exc.history, status=exc.status, message=exc.message, headers=exc.headers)
self.args = (*exc.request_info, exc.history, request)
self._exception = exc

Expand Down

0 comments on commit d25a88c

Please sign in to comment.