Skip to content

Commit 8b61f12

Browse files
committed
fixup mypy issues
1 parent 8b7c98d commit 8b61f12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pynats/exceptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ class NATSError(Exception):
88
class NATSUnexpectedResponse(NATSError):
99
def __init__(self, line: bytes, *args, **kwargs) -> None:
1010
self.line = line
11-
super().__init__(*args, **kwargs)
11+
super().__init__()
1212

1313

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

0 commit comments

Comments
 (0)