Files
LangBot/src/langbot/pkg/api/http/controller/groups/box_visibility.py
T
2026-06-23 06:40:05 -04:00

6 lines
176 B
Python

from __future__ import annotations
def should_hide_box_runtime_status(edition: str, box_enabled: bool | None) -> bool:
return edition == 'cloud' and box_enabled is False