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 pycentral/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,7 @@ def enable_wlan(self, conn, group_name, wlan_name):
:type conn: class:`pycentral.ArubaCentralBase`
:param group_name: Name of Aruba Central UI group which has the WLAN
:type group_name: str
:param wlan_name: Name of WLAN whose configuration has to be returned
:param wlan_name: Name of WLAN which has to be enabled
:type wlan_name: str
"""
a = ApConfiguration()
Expand All @@ -1382,7 +1382,7 @@ def disable_wlan(self, conn, group_name, wlan_name):
:type conn: class:`pycentral.ArubaCentralBase`
:param group_name: Name of Aruba Central UI group which has the WLAN
:type group_name: str
:param wlan_name: Name of WLAN whose configuration has to be returned
:param wlan_name: Name of WLAN which has to be disabled
:type wlan_name: str
"""
a = ApConfiguration()
Expand Down