Skip to content

Commit 9c73a06

Browse files
committed
fix: linting FMT issue
1 parent 68a1d93 commit 9c73a06

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/aleph/sdk/client/services/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
from pydantic import BaseModel
55

6-
from aleph.sdk.conf import settings
7-
86
if TYPE_CHECKING:
97
from aleph.sdk.client.http import AlephHttpClient
108

src/aleph/sdk/client/services/dns.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ async def get_public_dns_by_host(self, crn_hostname):
3636
Get all the public dns with filter on crn_url
3737
"""
3838
async with aiohttp.ClientSession() as session:
39-
async with session.get(sanitize_url(settings.DNS_API), params={"crn_url": crn_hostname}) as resp:
39+
async with session.get(
40+
sanitize_url(settings.DNS_API), params={"crn_url": crn_hostname}
41+
) as resp:
4042
resp.raise_for_status()
4143
raw = await resp.json()
4244

0 commit comments

Comments
 (0)