mirror of
https://github.com/notwa/mm
synced 2024-11-05 02:29:03 -08:00
reorder imports
This commit is contained in:
parent
3924501c7e
commit
9e236e4c54
1 changed files with 5 additions and 5 deletions
10
z64dump.py
10
z64dump.py
|
@ -1,12 +1,15 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from hashlib import sha1
|
||||
from io import BytesIO
|
||||
import argparse
|
||||
import os
|
||||
import os.path
|
||||
import sys
|
||||
import zlib
|
||||
from io import BytesIO
|
||||
from hashlib import sha1
|
||||
|
||||
from heuristics import detect_format
|
||||
from util import *
|
||||
|
||||
# check for cython
|
||||
try:
|
||||
|
@ -24,9 +27,6 @@ else:
|
|||
import Yaz0
|
||||
import n64
|
||||
|
||||
from util import *
|
||||
from heuristics import detect_format
|
||||
|
||||
lament = lambda *args, **kwargs: print(*args, file=sys.stderr, **kwargs)
|
||||
|
||||
# shoutouts to spinout182
|
||||
|
|
Loading…
Reference in a new issue