diff --git a/system/hardware/tici/esim.py b/system/hardware/tici/esim.py index 9d0e18361d..6ac3ced18f 100755 --- a/system/hardware/tici/esim.py +++ b/system/hardware/tici/esim.py @@ -162,6 +162,6 @@ if __name__ == "__main__": parser.print_help() profiles = lpa.list_profiles() - print(f'{len(profiles)} profile{"s" if len(profiles) > 1 else ""}:') + print(f'\n{len(profiles)} profile{"s" if len(profiles) > 1 else ""}:') for p in profiles: print(f'- {p.iccid} (nickname: {p.nickname or "no nickname"}) (provider: {p.provider}) - {"enabled" if p.enabled else "disabled"}')