Skip to content

Commit 7ce9e39

Browse files
committed
restructure code to have a line length shorter than 80 chars
1 parent 8f7a716 commit 7ce9e39

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyunifi/controller.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,8 @@ def update_x_passphrase(self, wlan_id, x_passphrase):
761761
:param x_passphrase: The new password
762762
:return: the updated wlan_conf
763763
"""
764-
res = self._api_update("rest/wlanconf/" + wlan_id, {"x_passphrase": x_passphrase})
764+
res = self._api_update("rest/wlanconf/" + wlan_id,
765+
{"x_passphrase": x_passphrase})
765766
return res
766767

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

0 commit comments

Comments
 (0)