Skip to content

Commit

Permalink
better exiting
Browse files Browse the repository at this point in the history
  • Loading branch information
KingKDot committed May 3, 2024
1 parent 3b375f6 commit 184d6c1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import sys
import json
from dataclasses import dataclass

Expand Down Expand Up @@ -189,7 +190,7 @@ def get_user_file() -> str:
double_click_check=Settings.double_click_check,
utf_16_bom=Settings.utf_16_bom,
)
exit(0)
sys.exit(0)
AutoUpdate(__version__)
SomalifuscatorV2().run()
exit(0)
sys.exit(0)

0 comments on commit 184d6c1

Please sign in to comment.