Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion zeroconf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import sys

from .cache import DNSCache # noqa # import needed for backwards compat
from ._cache import DNSCache # noqa # import needed for backwards compat
from ._core import NotifyListener, Zeroconf # noqa # import needed for backwards compat
from ._dns import ( # noqa # import needed for backwards compat
DNSAddress,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion zeroconf/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
from types import TracebackType # noqa # used in type hints
from typing import Dict, List, Optional, Type, Union, cast

from ._cache import DNSCache
from ._dns import DNSIncoming, DNSOutgoing, DNSQuestion
from ._exceptions import NonUniqueNameException
from ._handlers import QueryHandler, RecordManager
from ._logger import QuietLogger, log
from .cache import DNSCache
from .const import (
_CACHE_CLEANUP_INTERVAL,
_CHECK_TIME,
Expand Down
2 changes: 1 addition & 1 deletion zeroconf/_dns.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

if TYPE_CHECKING:
# https://github.com/PyCQA/pylint/issues/3525
from .cache import DNSCache # pylint: disable=cyclic-import
from ._cache import DNSCache # pylint: disable=cyclic-import


class DNSEntry:
Expand Down