Fix line break after binary operator in proxy

This commit is contained in:
Dmitri Bogomolov 2021-02-28 19:22:11 +02:00
parent 05779e1675
commit 28ae62b15d
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -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