Skip to content

Commit ca0ee9f

Browse files
authored
Update meraki.py
1 parent 68fb418 commit ca0ee9f

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

meraki.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3266,8 +3266,8 @@ def updatessid(apikey, networkid, ssidnum, name, enabled, authmode, encryptionmo
32663266

32673267
# Update the attributes of an SSID
32683268
# https://api.meraki.com/api_docs#update-the-attributes-of-an-ssid
3269+
"""
32693270
def updatessidobject(apikey, networkid, newssid: SSID, suppressprint=False):
3270-
'''
32713271
32723272
Args:
32733273
apikey: User's Meraki API Key
@@ -3278,7 +3278,6 @@ def updatessidobject(apikey, networkid, newssid: SSID, suppressprint=False):
32783278
Returns:
32793279
result: Error message or details of newly created SSID
32803280
3281-
'''
32823281
# puturl = '{0}/networks/{1}/ssids/{2}'.format(str(base_url), str(networkid), newelement.ssidnum)
32833282
headers = {
32843283
'x-cisco-meraki-api-key': format(str(apikey)),
@@ -3297,7 +3296,7 @@ def updatessidobject(apikey, networkid, newssid: SSID, suppressprint=False):
32973296
#
32983297
result = __returnhandler(dashboard.status_code, dashboard.text, str(newssid.type).upper(), suppressprint)
32993298
return result
3300-
3299+
"""
33013300

33023301
### STATIC ROUTES ###
33033302

0 commit comments

Comments
 (0)