1
0
Fork 0
mirror of https://github.com/notwa/mm synced 2024-05-17 21:23:22 -07:00

reorder imports

This commit is contained in:
Connor Olding 2018-05-03 19:38:17 +02:00
parent 3924501c7e
commit 9e236e4c54

View File

@ -1,12 +1,15 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
from hashlib import sha1
from io import BytesIO
import argparse import argparse
import os import os
import os.path import os.path
import sys import sys
import zlib import zlib
from io import BytesIO
from hashlib import sha1 from heuristics import detect_format
from util import *
# check for cython # check for cython
try: try:
@ -24,9 +27,6 @@ else:
import Yaz0 import Yaz0
import n64 import n64
from util import *
from heuristics import detect_format
lament = lambda *args, **kwargs: print(*args, file=sys.stderr, **kwargs) lament = lambda *args, **kwargs: print(*args, file=sys.stderr, **kwargs)
# shoutouts to spinout182 # shoutouts to spinout182