lib import priority

Import sys before other libs to avoid errors on sys.exit() when requirements are missing
This commit is contained in:
Raphael 2018-12-16 14:04:23 +00:00 committed by GitHub
parent 120e190c29
commit 01f60ef4bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,9 +3,9 @@
__version__ = 'v1.0.0-rc2'
try:
import sys
from colorama import Fore, Style
import atexit
import sys
import argparse
import random
except KeyboardInterrupt: