From 8123285489df42a6d7fb617355270ee30f00a0fd Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Fri, 18 Apr 2025 13:16:59 +0000 Subject: [PATCH] rename directory --- .../{integration_blueprint => tibber_prices}/__init__.py | 0 .../{integration_blueprint => tibber_prices}/api.py | 0 .../{integration_blueprint => tibber_prices}/binary_sensor.py | 0 .../{integration_blueprint => tibber_prices}/config_flow.py | 0 .../{integration_blueprint => tibber_prices}/const.py | 2 +- .../{integration_blueprint => tibber_prices}/coordinator.py | 0 .../{integration_blueprint => tibber_prices}/data.py | 0 .../{integration_blueprint => tibber_prices}/entity.py | 0 .../{integration_blueprint => tibber_prices}/manifest.json | 0 .../{integration_blueprint => tibber_prices}/sensor.py | 0 .../{integration_blueprint => tibber_prices}/switch.py | 0 .../translations/en.json | 0 12 files changed, 1 insertion(+), 1 deletion(-) rename custom_components/{integration_blueprint => tibber_prices}/__init__.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/api.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/binary_sensor.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/config_flow.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/const.py (66%) rename custom_components/{integration_blueprint => tibber_prices}/coordinator.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/data.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/entity.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/manifest.json (100%) rename custom_components/{integration_blueprint => tibber_prices}/sensor.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/switch.py (100%) rename custom_components/{integration_blueprint => tibber_prices}/translations/en.json (100%) diff --git a/custom_components/integration_blueprint/__init__.py b/custom_components/tibber_prices/__init__.py similarity index 100% rename from custom_components/integration_blueprint/__init__.py rename to custom_components/tibber_prices/__init__.py diff --git a/custom_components/integration_blueprint/api.py b/custom_components/tibber_prices/api.py similarity index 100% rename from custom_components/integration_blueprint/api.py rename to custom_components/tibber_prices/api.py diff --git a/custom_components/integration_blueprint/binary_sensor.py b/custom_components/tibber_prices/binary_sensor.py similarity index 100% rename from custom_components/integration_blueprint/binary_sensor.py rename to custom_components/tibber_prices/binary_sensor.py diff --git a/custom_components/integration_blueprint/config_flow.py b/custom_components/tibber_prices/config_flow.py similarity index 100% rename from custom_components/integration_blueprint/config_flow.py rename to custom_components/tibber_prices/config_flow.py diff --git a/custom_components/integration_blueprint/const.py b/custom_components/tibber_prices/const.py similarity index 66% rename from custom_components/integration_blueprint/const.py rename to custom_components/tibber_prices/const.py index 1995546..fa4997d 100644 --- a/custom_components/integration_blueprint/const.py +++ b/custom_components/tibber_prices/const.py @@ -5,4 +5,4 @@ from logging import Logger, getLogger LOGGER: Logger = getLogger(__package__) DOMAIN = "tibber_prices" -ATTRIBUTION = "Data provided by http://jsonplaceholder.typicode.com/" +ATTRIBUTION = "Data provided by https://tibber.com/" diff --git a/custom_components/integration_blueprint/coordinator.py b/custom_components/tibber_prices/coordinator.py similarity index 100% rename from custom_components/integration_blueprint/coordinator.py rename to custom_components/tibber_prices/coordinator.py diff --git a/custom_components/integration_blueprint/data.py b/custom_components/tibber_prices/data.py similarity index 100% rename from custom_components/integration_blueprint/data.py rename to custom_components/tibber_prices/data.py diff --git a/custom_components/integration_blueprint/entity.py b/custom_components/tibber_prices/entity.py similarity index 100% rename from custom_components/integration_blueprint/entity.py rename to custom_components/tibber_prices/entity.py diff --git a/custom_components/integration_blueprint/manifest.json b/custom_components/tibber_prices/manifest.json similarity index 100% rename from custom_components/integration_blueprint/manifest.json rename to custom_components/tibber_prices/manifest.json diff --git a/custom_components/integration_blueprint/sensor.py b/custom_components/tibber_prices/sensor.py similarity index 100% rename from custom_components/integration_blueprint/sensor.py rename to custom_components/tibber_prices/sensor.py diff --git a/custom_components/integration_blueprint/switch.py b/custom_components/tibber_prices/switch.py similarity index 100% rename from custom_components/integration_blueprint/switch.py rename to custom_components/tibber_prices/switch.py diff --git a/custom_components/integration_blueprint/translations/en.json b/custom_components/tibber_prices/translations/en.json similarity index 100% rename from custom_components/integration_blueprint/translations/en.json rename to custom_components/tibber_prices/translations/en.json