Skip to content

Commit

Permalink
fix: incorrect mypy diagnosis of Unpack[ExtraArgs]. (#1488)
Browse files Browse the repository at this point in the history
  • Loading branch information
JPHutchins committed Dec 30, 2023
1 parent 13c0e0c commit 17d4374
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS.rst
Expand Up @@ -22,6 +22,7 @@ Contributors
* Edward Betts <edward@4angle.com>
* Robbe Gaeremynck <robbe.gaeremynck@outlook.com>
* David Johansen <davejohansen@gmail.com>
* JP Hutchins <jphutchins@gmail.com>

Sponsors
--------
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Expand Up @@ -22,6 +22,7 @@ Changed
Fixed
-----
* Fixed BlueZ version in passive scanning error message. Fixes #1433.
* Fixed mypy requiring ``Unpack[ExtraArgs]`` that were intended to be optional. Fixes #1487.

`0.21.1`_ (2023-09-08)
======================
Expand Down
2 changes: 1 addition & 1 deletion bleak/__init__.py
Expand Up @@ -245,7 +245,7 @@ async def advertisement_data(
finally:
unregister_callback()

class ExtraArgs(TypedDict):
class ExtraArgs(TypedDict, total=False):
"""
Keyword args from :class:`~bleak.BleakScanner` that can be passed to
other convenience methods.
Expand Down

0 comments on commit 17d4374

Please sign in to comment.