From e9697872c8ebb8e0b41c5e7bf78dab6d3b58afcf Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Fri, 22 Jul 2022 16:02:10 +0200 Subject: [PATCH] Fix small homekit type error (#75617) --- homeassistant/components/homekit/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/homeassistant/components/homekit/__init__.py b/homeassistant/components/homekit/__init__.py index 5d7e647e466..6852ff4fa9f 100644 --- a/homeassistant/components/homekit/__init__.py +++ b/homeassistant/components/homekit/__init__.py @@ -8,7 +8,6 @@ import ipaddress import logging import os from typing import Any, cast -from uuid import UUID from aiohttp import web from pyhap.const import STANDALONE_AID @@ -510,7 +509,7 @@ class HomeKit: self.bridge: HomeBridge | None = None - def setup(self, async_zeroconf_instance: AsyncZeroconf, uuid: UUID) -> None: + def setup(self, async_zeroconf_instance: AsyncZeroconf, uuid: str) -> None: """Set up bridge and accessory driver.""" persist_file = get_persist_fullpath_for_entry_id(self.hass, self._entry_id)