Skip to content

fixed doc of wifi.Network.authmode #9725

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 17, 2024
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