Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions shared-bindings/wifi/Network.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ MP_DEFINE_CONST_FUN_OBJ_1(wifi_network_get_country_obj, wifi_network_get_country
MP_PROPERTY_GETTER(wifi_network_country_obj,
(mp_obj_t)&wifi_network_get_country_obj);

//| authmode: str
//| """String id of the authmode"""
//| authmode: Sequence[wifi.AuthMode]
//| """List of authmodes (wifi.AuthMode) used by the network """
//|
static mp_obj_t wifi_network_get_authmode(mp_obj_t self) {
return common_hal_wifi_network_get_authmode(self);
Expand Down