From 1462ae7ff42d2f3847a002dfed93e7d7b18eb442 Mon Sep 17 00:00:00 2001 From: "IQ.Lvbs CI [bot]" Date: Mon, 27 Jul 2026 18:42:23 -0500 Subject: [PATCH] IQ.Pilot Release Commit @ 78d6162 --- iqpilot/common/atlas_alerts.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/iqpilot/common/atlas_alerts.py b/iqpilot/common/atlas_alerts.py index 5339155..8060fda 100644 --- a/iqpilot/common/atlas_alerts.py +++ b/iqpilot/common/atlas_alerts.py @@ -214,9 +214,10 @@ class NoEntryCard(AlertCard): def __init__(self, alert_text_2: str, alert_text_1: str = "openpilot Unavailable", - visual_alert: car.CarControl.HUDControl.VisualAlert = VisualAlert.none): + visual_alert: car.CarControl.HUDControl.VisualAlert = VisualAlert.none, + priority: Tier = Tier.LOW): primary, secondary, size = _mici_reframe(alert_text_1, alert_text_2) - super().__init__(primary, secondary, AlertStatus.normal, size, Tier.LOW, visual_alert, AudibleAlert.refuse, 3.0) + super().__init__(primary, secondary, AlertStatus.normal, size, priority, visual_alert, AudibleAlert.refuse, 3.0) class GentleDisableCard(AlertCard):