mirror of
https://github.com/notwa/mm
synced 2025-02-05 05:23:22 -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
|
#!/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
|
||||||
|
|
Loading…
Add table
Reference in a new issue