Files
StarPilot/selfdrive/ui/mici/layouts/settings/network/action_state.py
T
firestar5683 d89371c518 WUMBO
2026-08-02 12:20:20 -05:00

4 lines
274 B
Python

def should_show_forget_button(*, is_tethering: bool, is_forgetting: bool, is_saved: bool,
wrong_password: bool, is_connecting: bool) -> bool:
return not (is_tethering or is_forgetting) and ((is_saved and not wrong_password) or is_connecting)