Skip to content

Commit

Permalink
Work around problematic change in typeshed.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaugustin committed Mar 20, 2022
1 parent a7b9860 commit db600e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/websockets/datastructures.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def clear(self) -> None:
self._dict = {}
self._list = []

def update(self, *args: HeadersLike, **kwargs: str) -> None:
def update(self, *args: HeadersLike, **kwargs: str) -> None: # type: ignore
"""
Update from a :class:`Headers` instance and/or keyword arguments.
Expand Down

0 comments on commit db600e5

Please sign in to comment.