8000 Fix linting issue after namespace package fix by dominikschubert · Pull Request #11913 · localstack/localstack · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix linting issue after namespace package fix #11913

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 22, 2024
Merged
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
9 changes: 5 additions & 4 deletions localstack-core/localstack/dns/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,8 @@
from socket import AddressFamily
from typing import Iterable, Literal, Tuple

import dns.flags
import dns.message
import dns.query
import psutil
from cachetools import TTLCache, cached
from dns.exception import Timeout
from dnslib import (
AAAA,
CNAME,
Expand All @@ -39,6 +35,11 @@
from dnslib.server import DNSHandler, DNSServer
from psutil._common import snicaddr

import dns.flags
import dns.message
import dns.query
from dns.exception import Timeout

# Note: avoid adding additional imports here, to avoid import issues when running the CLI
from localstack import config
from localstack.constants import LOCALHOST_HOSTNAME, LOCALHOST_IP
Expand Down
Loading
0