Skip to content

Commit

Permalink
Fix quit -> sys.exit
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Jan 14, 2022
1 parent 1cdb397 commit 8d18b54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

import sys
import ctypes
import logging
import argparse
Expand Down Expand Up @@ -57,7 +58,7 @@ def debug_gql(self) -> int:
exists = False
if exists:
# already running - exit
quit()
sys.exit()
# handle input parameters
parser = argparse.ArgumentParser(
"Twitch Drops Miner (by DevilXD).exe",
Expand Down

0 comments on commit 8d18b54

Please sign in to comment.