Fix line break after binary operator in proxy

g1itch/flake8
Dmitri Bogomolov 3 years ago
parent 05779e1675
commit 28ae62b15d
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

@ -61,9 +61,9 @@ class Proxy(AdvancedDispatcher):
@proxy.setter
def proxy(self, address):
"""Set proxy IP and port"""
if (not isinstance(address, tuple) or len(address) < 2 or
not isinstance(address[0], str) or
not isinstance(address[1], int)):
if (not isinstance(address, tuple) or len(address) < 2
or not isinstance(address[0], str)
or not isinstance(address[1], int)):
raise ValueError
self.__class__._proxy = address

Loading…
Cancel
Save