From a7164cdbea70472422aa40afb57c6918d9e4821f Mon Sep 17 00:00:00 2001 From: Trey Moen Date: Tue, 20 May 2025 21:41:14 -0700 Subject: [PATCH] desc --- system/hardware/tici/esim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/hardware/tici/esim.py b/system/hardware/tici/esim.py index 4417b5bb74..51c19b113c 100755 --- a/system/hardware/tici/esim.py +++ b/system/hardware/tici/esim.py @@ -134,7 +134,7 @@ class LPA: if __name__ == "__main__": parser = argparse.ArgumentParser(prog='esim.py', description='manage eSIM profiles on your comma device', epilog='comma.ai') - parser.add_argument('--backend', choices=['qmi', 'at'], default='qmi', help='use the specified backend') + parser.add_argument('--backend', choices=['qmi', 'at'], default='qmi', help='use the specified backend, defaults to qmi') parser.add_argument('--enable', metavar='iccid', help='enable profile; will disable current profile') parser.add_argument('--disable', metavar='iccid', help='disable profile') parser.add_argument('--delete', metavar='iccid', help='delete profile (warning: this cannot be undone)')