From a170ef31df4c01d1721540d912cbe228774a79f7 Mon Sep 17 00:00:00 2001 From: Mc-muffin <8714476+Mc-muffin@users.noreply.github.com> Date: Sat, 30 Nov 2024 09:34:07 -0500 Subject: [PATCH] Sort imports --- pythonlib/games/ToolsTOR.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pythonlib/games/ToolsTOR.py b/pythonlib/games/ToolsTOR.py index 39469cd..0f3bad0 100644 --- a/pythonlib/games/ToolsTOR.py +++ b/pythonlib/games/ToolsTOR.py @@ -1,10 +1,11 @@ import datetime +import io +import os import re import shutil import struct import subprocess import types -import os from collections.abc import Iterable from dataclasses import dataclass from itertools import tee @@ -14,7 +15,6 @@ import lxml.etree as etree import pycdlib import pyjson5 as json from tqdm import tqdm -import io import pythonlib.formats.rebirth.pak2 as pak2lib import pythonlib.utils.comptolib as comptolib @@ -22,9 +22,11 @@ from pythonlib.formats.FileIO import FileIO from pythonlib.formats.pak import Pak from pythonlib.formats.rebirth.scpk import Scpk from pythonlib.formats.rebirth.theirsce import Theirsce -from pythonlib.formats.rebirth.theirsce_instructions import (AluOperation, - InstructionType, - TheirsceBaseInstruction) +from pythonlib.formats.rebirth.theirsce_instructions import ( + AluOperation, + InstructionType, + TheirsceBaseInstruction, +) from .ToolsTales import ToolsTales