Skip to content

Commit dfc4376

Browse files
authored
Merge pull request #173 from tekktrik/dev/cirpy-8-update
Update for CircuitPython 8.0.0
2 parents d24b832 + e5d77ce commit dfc4376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_ble/advertising/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def matches_prefixes(cls, entry: ScanEntry, *, all_: bool) -> bool:
326326
returns ``True`` if at least one of the prefixes match.
327327
"""
328328
# Returns True if cls.get_prefix_bytes() is empty.
329-
return entry.matches(cls.get_prefix_bytes(), all=all_)
329+
return entry.matches(cls.get_prefix_bytes(), match_all=all_)
330330

331331
def __bytes__(self) -> bytes:
332332
"""The raw packet bytes."""

0 commit comments

Comments
 (0)