Skip to content
Closed
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
3 changes: 0 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
python -m pip install --upgrade pip
pip install ruff tld types-redis types-requests python-dateutil whodap

- name: Run ruff format check
run: ruff format --check whoisdomain/

- name: Run ruff lint
run: ruff check whoisdomain/

Expand Down
2 changes: 1 addition & 1 deletion whoisdomain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def q2(
if dd.status:
with_rdap_whois = True
d: dict[str, Any] = wr.map_data_to_whoisdomain(dd.data, with_rdap_whois=with_rdap_whois)
d['__lookup__'] = 'rdap'
d["__lookup__"] = "rdap"

rr = Domain(pc=pc, dc=dc)
rr.from_whodap_dict(d)
Expand Down
2 changes: 1 addition & 1 deletion whoisdomain/context/parameterContext.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import json
import logging
from dataclasses import asdict, dataclass
from typing import Any


log = logging.getLogger(__name__)

Expand Down
Loading