From 2511402400ff711154f2b721339c5b01c1ffe998 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 8 Jan 2023 23:53:17 +0100 Subject: [PATCH] Code styling tweaks to the AdGuard Home integration (#85468) --- homeassistant/components/adguard/entity.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/adguard/entity.py b/homeassistant/components/adguard/entity.py index 7d6bf099366..3a60ad4e8b1 100644 --- a/homeassistant/components/adguard/entity.py +++ b/homeassistant/components/adguard/entity.py @@ -58,7 +58,12 @@ class AdGuardHomeEntity(Entity): return DeviceInfo( entry_type=DeviceEntryType.SERVICE, identifiers={ - (DOMAIN, self.adguard.host, self.adguard.port, self.adguard.base_path) # type: ignore[arg-type] + ( # type: ignore[arg-type] + DOMAIN, + self.adguard.host, + self.adguard.port, + self.adguard.base_path, + ) }, manufacturer="AdGuard Team", name="AdGuard Home",