From 501a6e15cdf16f3a139d3d06bbe3afeaee5c2bdb Mon Sep 17 00:00:00 2001 From: Heiko Ritter Date: Mon, 25 Feb 2019 14:05:53 +0100 Subject: [PATCH] restructure code to have a line length shorter than 80 chars --- pyunifi/controller.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyunifi/controller.py b/pyunifi/controller.py index b456a11..397ae96 100644 --- a/pyunifi/controller.py +++ b/pyunifi/controller.py @@ -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):