From 27c76623eaf36bc2971931ee8349cba98f867922 Mon Sep 17 00:00:00 2001 From: ludeeus Date: Mon, 22 Jul 2024 14:03:23 +0000 Subject: [PATCH] lint --- custom_components/healthchecksio/__init__.py | 2 -- custom_components/healthchecksio/const.py | 8 +------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/custom_components/healthchecksio/__init__.py b/custom_components/healthchecksio/__init__.py index a30a537..a98db30 100644 --- a/custom_components/healthchecksio/__init__.py +++ b/custom_components/healthchecksio/__init__.py @@ -6,7 +6,6 @@ """ import asyncio -import os from datetime import timedelta from logging import getLogger @@ -21,7 +20,6 @@ DOMAIN, DOMAIN_DATA, OFFICIAL_SITE_ROOT, - REQUIRED_FILES, ) MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=300) diff --git a/custom_components/healthchecksio/const.py b/custom_components/healthchecksio/const.py index f3af89c..aa6a8d6 100644 --- a/custom_components/healthchecksio/const.py +++ b/custom_components/healthchecksio/const.py @@ -5,13 +5,7 @@ DOMAIN_DATA = f"{DOMAIN}_data" INTEGRATION_VERSION = "main" PLATFORMS = ["binary_sensor"] -REQUIRED_FILES = [ - ".translations/en.json", - "binary_sensor.py", - "const.py", - "config_flow.py", - "manifest.json", -] + ISSUE_URL = "https://github.com/custom-components/healthchecksio/issues" ATTRIBUTION = "Data from this is provided by healthchecks.io."