From 1bd17359c688eeccd86fe9a1b4a40b096e2f89f8 Mon Sep 17 00:00:00 2001 From: dw-0 Date: Fri, 28 Jun 2024 21:32:45 +0200 Subject: [PATCH] fix: add instance names to blacklist Signed-off-by: Dominik Willner --- kiauh/components/octoeverywhere/octoeverywhere.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiauh/components/octoeverywhere/octoeverywhere.py b/kiauh/components/octoeverywhere/octoeverywhere.py index 41ef3f8..3adcfe8 100644 --- a/kiauh/components/octoeverywhere/octoeverywhere.py +++ b/kiauh/components/octoeverywhere/octoeverywhere.py @@ -27,7 +27,7 @@ from utils.logger import Logger class Octoeverywhere(BaseInstance): @classmethod def blacklist(cls) -> List[str]: - return ["None", "mcu"] + return ["None", "mcu", "bambu", "companion"] def __init__(self, suffix: str = ""): super().__init__(instance_type=self, suffix=suffix)