Skip to content

Commit 922a5ab

Browse files
authored
Merge pull request #166 from tekktrik/doc/specify-targets
Fix Build CI issue
2 parents ab7e97c + c8528e1 commit 922a5ab

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

adafruit_ble/advertising/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,8 @@ class Advertisement:
206206
"""
207207

208208
match_prefixes = ()
209-
"""For Advertisement, `matches` will always return True. Subclasses may override this value."""
209+
"""For Advertisement, `Advertisement.matches` will always return ``True``.
210+
Subclasses may override this value."""
210211
# cached bytes of merged prefixes.
211212
_prefix_bytes = None
212213

adafruit_ble/advertising/standard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ class ManufacturerData(AdvertisingDataField):
207207
company_id and the data is structured like an advertisement with a configurable key
208208
format. The order of the serialized data is determined by the order that the
209209
`ManufacturerDataField` attributes are set in - this can be useful for
210-
`match_prefixes` in an `Advertisement` sub-class."""
210+
`Advertisement.match_prefixes` in an `Advertisement` sub-class."""
211211

212212
def __init__(
213213
self, obj, *, advertising_data_type=0xFF, company_id, key_encoding="B"

0 commit comments

Comments
 (0)