Skip to content

Commit 501a6e1

Browse files
committed
restructure code to have a line length shorter than 80 chars
1 parent 66e9f92 commit 501a6e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyunifi/controller.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,8 @@ def update_x_passphrase(self, wlan_id, x_passphrase):
473473
:param x_passphrase: The new password
474474
:return: the updated wlan_conf
475475
"""
476-
res = self._api_update("rest/wlanconf/" + wlan_id, {"x_passphrase": x_passphrase})
476+
res = self._api_update("rest/wlanconf/" + wlan_id,
477+
{"x_passphrase": x_passphrase})
477478
return res
478479

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

0 commit comments

Comments
 (0)