lib import priority
Import sys before other libs to avoid errors on sys.exit() when requirements are missing
This commit is contained in:
parent
120e190c29
commit
01f60ef4bf
|
|
@ -3,9 +3,9 @@
|
||||||
__version__ = 'v1.0.0-rc2'
|
__version__ = 'v1.0.0-rc2'
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
import sys
|
||||||
from colorama import Fore, Style
|
from colorama import Fore, Style
|
||||||
import atexit
|
import atexit
|
||||||
import sys
|
|
||||||
import argparse
|
import argparse
|
||||||
import random
|
import random
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue