From 8ced742a6fad1c541b578f63b6de41634e7f554b Mon Sep 17 00:00:00 2001 From: Trey Moen Date: Thu, 4 Sep 2025 21:28:08 -0700 Subject: [PATCH] move --- system/athena/athenad.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/system/athena/athenad.py b/system/athena/athenad.py index f90cb26658..61fb84bc3b 100755 --- a/system/athena/athenad.py +++ b/system/athena/athenad.py @@ -560,6 +560,12 @@ def getNetworks(): return HARDWARE.get_networks() +@dispatcher.add_method +def bootstrapSim(acknowledged: bool): + assert acknowledged, 'you must acknowledge the operation to proceed' + HARDWARE.get_sim_lpa().bootstrap() + + @dispatcher.add_method def describeSim(): lpa = HARDWARE.get_sim_lpa() @@ -571,12 +577,6 @@ def describeSim(): } -@dispatcher.add_method -def bootstrapSim(acknowledged: bool): - assert acknowledged, 'you must acknowledge the operation to proceed' - HARDWARE.get_sim_lpa().bootstrap() - - @dispatcher.add_method def downloadSimProfile(lpa_activation_code: str, profile_name: str): lpa = HARDWARE.get_sim_lpa()