mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-09 00:55:34 +00:00
9 lines
200 B
Python
9 lines
200 B
Python
"""Verify network."""
|
|
from socket import gaierror
|
|
from integrationhelper import Logger
|
|
|
|
|
|
def internet_connectivity_check(host="api.github.com"):
|
|
"""Verify network connectivity."""
|
|
return True
|