From 8611e08dc6ea08196dea5c6d7347b3e583be53b6 Mon Sep 17 00:00:00 2001 From: discountchubbs Date: Sat, 6 Jun 2026 09:03:36 -0700 Subject: [PATCH] fix string --- sunnypilot/models/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sunnypilot/models/helpers.py b/sunnypilot/models/helpers.py index 9a8bd7d478..0fa94e39ff 100644 --- a/sunnypilot/models/helpers.py +++ b/sunnypilot/models/helpers.py @@ -121,7 +121,7 @@ def validate_active_bundle(params: Params, available_bundles: list[custom.ModelM _LAST_VALIDATED_RAW = raw_bundle -def get_active_bundle(params: Params | None = None, raw_bundle_dict: dict | bytes | None = None) -> custom.ModelManagerSP.ModelBundle | None: +def get_active_bundle(params: Params | None = None, raw_bundle_dict: dict | bytes | None = None) -> "custom.ModelManagerSP.ModelBundle | None": params = params or Params() try: active_bundle_dict = raw_bundle_dict if raw_bundle_dict is not None else (params.get("ModelManager_ActiveBundle") or {})