Skip to content

Commit 0c1ea01

Browse files
committed
Stop loading animation on exit
1 parent be2f74e commit 0c1ea01

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "1.0.2"
2+
"version": "1.0.3"
33
}

main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,7 @@ def exit_script_on_error(reason, exit_code=1):
350350
Returns: `None`
351351
"""
352352

353+
LOADING_ANIMATION.stop_loading()
353354
log_error(reason)
354355
input_color("Press enter to exit...", RED)
355356
sys.exit(exit_code)
@@ -662,7 +663,7 @@ def serialize_object(obj):
662663

663664
### Handle Arguments ###
664665
if len(sys.argv) > 1 and sys.argv[1] == "--version":
665-
print("v1.0.2")
666+
print("v1.0.3")
666667
sys.exit(0)
667668

668669
### START ###

0 commit comments

Comments
 (0)