Merge pull request #26 from kokarare1212/deepsource-transform-f77c33e4

Format code with yapf
This commit is contained in:
こうから
2021-05-19 20:35:22 +09:00
committed by GitHub
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: