Merge pull request #8208 from dhalbert/8.2.x-backport-8180-ip4v-addressdoc

8.2.x backport: docs:  wifi.radio.ipv4_address_ap is read-only
This commit is contained in:
Scott Shawcroft 2023-07-24 10:09:46 -07:00 committed by GitHub
commit 516a242344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ MP_PROPERTY_GETTER(wifi_radio_ipv4_address_obj,
(mp_obj_t)&wifi_radio_get_ipv4_address_obj);
//| ipv4_address_ap: Optional[ipaddress.IPv4Address]
//| """IP v4 Address of the access point, when enabled. None otherwise."""
//| """IP v4 Address of the access point, when enabled. None otherwise. (read-only)"""
STATIC mp_obj_t wifi_radio_get_ipv4_address_ap(mp_obj_t self) {
return common_hal_wifi_radio_get_ipv4_address_ap(self);
}