Skip to content

Commit

Permalink
fix: DankMidsClientResponseError (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Nov 20, 2023
1 parent 9addd70 commit 4ce8d19
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 @@ -39,7 +39,7 @@ def __init__(
) -> None:
self.request = request
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.args = (*self.args, request)
self._exception = exc

internal_err_types = Union[AttributeError, TypeError, UnboundLocalError, NotImplementedError, RuntimeError, SyntaxError]
Expand Down

0 comments on commit 4ce8d19

Please sign in to comment.