mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-25 23:14:20 +00:00
6 lines
176 B
Python
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
|