From b0a5e91c2476fb0ce7162008bae512f1fb387935 Mon Sep 17 00:00:00 2001 From: kesawi <14970452+kesawi@users.noreply.github.com> Date: Thu, 14 May 2026 22:23:33 +1000 Subject: [PATCH] fix: use relative import in intesisbox.py to prevent system package conflict intesisbox.py used an absolute import which breaks when pyintesishome is vendored inside another package, causing the system-installed package to be loaded instead of the vendored copy. Change to a relative import consistent with all other files in the package. --- pyintesishome/intesisbox.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyintesishome/intesisbox.py b/pyintesishome/intesisbox.py index 553bb32..9bbe3dd 100644 --- a/pyintesishome/intesisbox.py +++ b/pyintesishome/intesisbox.py @@ -4,7 +4,7 @@ import logging from typing import List -from pyintesishome.intesisbase import IntesisBase +from .intesisbase import IntesisBase from .const import ( DEVICE_INTESISBOX,