Removed all wildcard imports & ordered import statements alphabetically

This commit is contained in:
Colin Basnett
2025-03-30 18:27:47 -07:00
parent 16a11cd961
commit 322844b88c
10 changed files with 61 additions and 51 deletions

View File

@@ -2,7 +2,7 @@ from ctypes import Structure, sizeof
from typing import Type
from .data import Psa
from ..shared.data import Section, PsxBone
from ..shared.data import PsxBone, Section
def write_section(fp, name: bytes, data_type: Type[Structure] = None, data: list = None):