From b70254feed3f6ad6bb3dc9b43f94f2a6ee37ad6d Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Fri, 26 Nov 2021 14:30:47 -0500 Subject: [PATCH] zeroconf: minor formatting fix Signed-off-by: Eric Callahan --- moonraker/components/zeroconf.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/moonraker/components/zeroconf.py b/moonraker/components/zeroconf.py index 0f9a4e8..da502e6 100644 --- a/moonraker/components/zeroconf.py +++ b/moonraker/components/zeroconf.py @@ -1,15 +1,12 @@ # Zeroconf registration implementation for Moonraker # -# Copyright (C) 2021 Eric Callahan +# Copyright (C) 2021 Clifford Roche # # This file may be distributed under the terms of the GNU GPLv3 license. from __future__ import annotations import socket import asyncio import logging - -from .machine import Machine - from zeroconf import IPVersion from zeroconf.asyncio import AsyncServiceInfo, AsyncZeroconf @@ -17,6 +14,7 @@ from typing import TYPE_CHECKING, Any, Dict, Iterator, List, Optional if TYPE_CHECKING: from confighelper import ConfigHelper + from .machine import Machine class AsyncRunner: