Skip to content

Commit

Permalink
💀 Fix imports that ruff removed
Browse files Browse the repository at this point in the history
  • Loading branch information
hardbyte committed Mar 15, 2024
1 parent 9224d73 commit 4c400ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion netcheck/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
from typing import List, Optional

from netcheck.checks.dns import DEFAULT_DNS_VALIDATION_RULE
from netcheck.version import NETCHECK_VERSION
from netcheck.checks.http import NetcheckHttpMethod
from netcheck.runner import run_from_config, check_individual_assertion
from netcheck.version import NETCHECK_VERSION


app = typer.Typer(no_args_is_help=True)
Expand Down
2 changes: 1 addition & 1 deletion netcheck/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from netcheck.version import OUTPUT_JSON_VERSION

from netcheck.version import NETCHECK_VERSION
from netcheck.checks import internal_check
from netcheck.checks.internal import internal_check
from netcheck.checks.dns import dns_lookup_check, DEFAULT_DNS_VALIDATION_RULE
from netcheck.checks.http import http_request_check, DEFAULT_HTTP_VALIDATION_RULE
from netcheck.context import replace_template, LazyFileLoadingDict
Expand Down

0 comments on commit 4c400ce

Please sign in to comment.