Skip to content

Commit

Permalink
Drop *args from BleakCharacteristicNotFoundError.__init__
Browse files Browse the repository at this point in the history
  • Loading branch information
emontnemery authored Nov 15, 2023
1 parent f0df13f commit ec36c73
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bleak/exc.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ class BleakCharacteristicNotFoundError(BleakError):

char_specifier: Union[int, str, uuid.UUID]

def __init__(
self, char_specifier: Union[int, str, uuid.UUID], *args: object
) -> None:
def __init__(self, char_specifier: Union[int, str, uuid.UUID]) -> None:
"""
Args:
characteristic (str): handle or UUID of the characteristic which was not found
Expand Down

0 comments on commit ec36c73

Please sign in to comment.