Skip to content

Commit

Permalink
fixup mypy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Gr1N committed Jan 20, 2019
1 parent 8b7c98d commit 8b61f12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pynats/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ class NATSError(Exception):
class NATSUnexpectedResponse(NATSError):
def __init__(self, line: bytes, *args, **kwargs) -> None:
self.line = line
super().__init__(*args, **kwargs)
super().__init__()


class NATSInvalidResponse(NATSError):
def __init__(self, line: bytes, *args, **kwargs) -> None:
self.line = line
super().__init__(*args, **kwargs)
super().__init__()

0 comments on commit 8b61f12

Please sign in to comment.