Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
steven11sjf committed Oct 30, 2024
1 parent f49a206 commit 80d78ba
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/mercury_engine_data_structures/formats/bmsstoc.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from __future__ import annotations

import enum
from typing import TYPE_CHECKING

import construct
from construct.core import (
Expand All @@ -16,10 +19,12 @@
Struct,
)

from mercury_engine_data_structures.base_resource import BaseResource
from mercury_engine_data_structures.common_types import make_vector
from mercury_engine_data_structures.formats.base_resource import BaseResource
from mercury_engine_data_structures.formats.property_enum import PropertyEnum
from mercury_engine_data_structures.game_check import Game

if TYPE_CHECKING:
from mercury_engine_data_structures.game_check import Game


class FileTypeEnum(enum.Enum):
Expand Down

0 comments on commit 80d78ba

Please sign in to comment.