Format code with yapf

This commit fixes the style issues introduced in 5a2f8ee according to the output
from yapf.

Details: https://deepsource.io/gh/kokarare1212/librespot-python/transform/c73e35c2-ae77-4ca4-ad95-979d1370b03c/
This commit is contained in:
deepsource-autofix[bot] 2021-05-19 11:34:45 +00:00 committed by GitHub
parent 5a2f8eed5d
commit 2e1f4a20bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View File

@ -34,5 +34,3 @@ class Record:
start = i + 1
out += bytes([0])
return out, len(name) + 2

View File

@ -16,9 +16,11 @@ class Zeroconf(Closeable):
def __init__(self):
try:
self.__BROADCAST4 = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.__BROADCAST4 = socket.socket(socket.AF_INET,
socket.SOCK_DGRAM)
self.__BROADCAST4.connect(("224.0.0.251", 5353))
self.__BROADCAST6 = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
self.__BROADCAST6 = socket.socket(socket.AF_INET6,
socket.SOCK_DGRAM)
self.__BROADCAST6.connect(("FF02::FB", 5353))
except Exception as e:
pass
@ -29,7 +31,9 @@ class Zeroconf(Closeable):
def get_or_create_local_host_name() -> str:
host = socket.gethostname()
if host == "localhost":
host = base64.b64encode(random.randint(-9223372036854775808, 9223372036854775807)).decode() + ".local"
host = base64.b64encode(
random.randint(-9223372036854775808,
9223372036854775807)).decode() + ".local"
return host
def set_use_ipv4(self, ipv4: bool) -> Zeroconf: