Skip to content

Commit 691f231

Browse files
committed
format
1 parent ee6bf57 commit 691f231

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

whoisdomain/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def q2(
208208
if dd.status:
209209
with_rdap_whois = True
210210
d: dict[str, Any] = wr.map_data_to_whoisdomain(dd.data, with_rdap_whois=with_rdap_whois)
211-
d['__lookup__'] = 'rdap'
211+
d["__lookup__"] = "rdap"
212212

213213
rr = Domain(pc=pc, dc=dc)
214214
rr.from_whodap_dict(d)

whoisdomain/context/parameterContext.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import json
33
import logging
44
from dataclasses import asdict, dataclass
5-
from typing import Any
65

76
log = logging.getLogger(__name__)
87

whoisdomain/domain.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
log = logging.getLogger(__name__)
1313

14+
1415
class Domain:
1516
def __init__(
1617
self,

0 commit comments

Comments
 (0)