Skip to content

Commit

Permalink
restructure code to have a line length shorter than 80 chars
Browse files Browse the repository at this point in the history
  • Loading branch information
cah-link committed Feb 25, 2019
1 parent 66e9f92 commit 501a6e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyunifi/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,8 @@ def update_x_passphrase(self, wlan_id, x_passphrase):
:param x_passphrase: The new password
:return: the updated wlan_conf
"""
res = self._api_update("rest/wlanconf/" + wlan_id, {"x_passphrase": x_passphrase})
res = self._api_update("rest/wlanconf/" + wlan_id,
{"x_passphrase": x_passphrase})
return res

def update_user_group(self, group_id, down_kbps=-1, up_kbps=-1):
Expand Down

0 comments on commit 501a6e1

Please sign in to comment.