homeassistant/custom_components/hacs/helpers/network.py

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