Add module docstrings

This commit is contained in:
2022-06-25 20:54:10 +01:00
parent 50b6280e2f
commit 460e74c6bb
8 changed files with 16 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python3
"""MODULE: Provides test cases for app/ip_info.py."""
from app.ip_info import ( # pragma: no cover
get_ip_information,
get_autonomous_system_number,

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python3
"""MODULE: Provides test cases for app/main.py."""
# from app.ip import is_ip_address

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python3
"""MODULE: Provides test cases for app/query_normalisation.py."""
from app.query_normalisation import ( # pragma: no cover
is_ip_address,
resolve_domain_name,