Skip to content

Commit 3b22519

Browse files
author
Dimitar Topuzov
committed
Fix Simulator.delete()
1 parent a1ac952 commit 3b22519

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

core/device/simulator.py

+1
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ def delete(name):
9797
Delete simulator.
9898
:param name: Simulator name.
9999
"""
100+
delete_output = ""
100101
output = run(command='xcrun simctl list | grep \'{0}\''.format(name), log_level=CommandLogLevel.SILENT)
101102
while (SIMULATOR_NAME in output) and ('Invalid' not in output):
102103
if 'Booted' in output:

0 commit comments

Comments
 (0)