Fix linting issues from CI #5

This commit is contained in:
2022-06-25 20:50:11 +01:00
parent b8b4a8be4b
commit 50b6280e2f
7 changed files with 27 additions and 25 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
from app.ip_info import (
from app.ip_info import ( # pragma: no cover
get_ip_information,
get_autonomous_system_number,
get_prefix_information,

View File

@ -1,6 +1,10 @@
#!/usr/bin/env python3
from app.query_normalisation import is_ip_address, resolve_domain_name, get_public_ip
from app.query_normalisation import ( # pragma: no cover
is_ip_address,
resolve_domain_name,
get_public_ip,
)
def test_is_ip_address_true() -> None: