Unify imports.

This commit is contained in:
2023-10-18 15:06:44 +02:00
parent ed85f32837
commit 08a04c3862

6
uadf
View File

@@ -40,10 +40,10 @@ import subprocess
import sys import sys
import tempfile import tempfile
from extfslib import Archive, parse_args import extfslib
class UAdf(Archive): class UAdf(extfslib.Archive):
""" """
Class for interact with c1541 program and MC Class for interact with c1541 program and MC
""" """
@@ -195,4 +195,4 @@ class UAdf(Archive):
if __name__ == "__main__": if __name__ == "__main__":
sys.exit(parse_args(UAdf)) sys.exit(extfslib.parse_args(UAdf))