Skip to content

Commit

Permalink
fix py3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
duncathan committed Jan 28, 2022
1 parent 8e7ace0 commit 6baa0c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mercury_engine_data_structures/formats/txt.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from typing import Dict
from construct.core import Struct, Construct, Const

from mercury_engine_data_structures.common_types import make_dict
Expand All @@ -18,7 +19,7 @@ def construct_class(cls, target_game: Game) -> Construct:
return TXT

@property
def strings(self) -> dict[str, str]:
def strings(self) -> Dict[str, str]:
return self._raw.strings

@strings.setter
Expand Down

0 comments on commit 6baa0c9

Please sign in to comment.