From 0317805014d8077be6d3a90fc1a0def0964e37b4 Mon Sep 17 00:00:00 2001 From: Jezza34000 <57314417+Jezza34000@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:40:36 +0100 Subject: [PATCH] :pencil2: fix docstring --- custom_components/petkit/config_flow.py | 4 ++-- custom_components/petkit/entity.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/custom_components/petkit/config_flow.py b/custom_components/petkit/config_flow.py index 15c5cd1..c669459 100644 --- a/custom_components/petkit/config_flow.py +++ b/custom_components/petkit/config_flow.py @@ -1,4 +1,4 @@ -"""Adds config flow for Blueprint.""" +"""Adds config flow for Petkit Smart Devices.""" from __future__ import annotations @@ -15,7 +15,7 @@ class PetkitFlowHandler(config_entries.ConfigFlow, domain=DOMAIN): - """Config flow for Blueprint.""" + """Config flow for Petkit Smart Devices.""" VERSION = 1 diff --git a/custom_components/petkit/entity.py b/custom_components/petkit/entity.py index 22fb53d..f9c3e58 100644 --- a/custom_components/petkit/entity.py +++ b/custom_components/petkit/entity.py @@ -1,4 +1,4 @@ -"""BlueprintEntity class.""" +"""Petkit Smart Devices Entity class.""" from __future__ import annotations @@ -69,7 +69,7 @@ def is_supported(self, device: Feeder | Litter | WaterFountain) -> bool: class PetkitEntity(CoordinatorEntity[PetkitDataUpdateCoordinator], Generic[_DevicesT]): - """BlueprintEntity class.""" + """Petkit Entity class.""" _attr_has_entity_name = True