Skip to content

Commit 0523d3e

Browse files
committed
CI: patch flake8 issue
1 parent 8818640 commit 0523d3e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sourcehold/structure_tools/Structure.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from typing import Dict
12
from sourcehold.structure_tools.Buffer import Buffer
23
from sourcehold.structure_tools.DataProperty import DataProperty
34

@@ -21,7 +22,7 @@ def __init__(self):
2122
# self.fields[key].fset(self, value)
2223

2324
@classmethod
24-
def get_fields(cls) -> dict[str, Field]:
25+
def get_fields(cls) -> Dict[str, Field]:
2526
fields = {}
2627

2728
tree = list(cls.__mro__)

0 commit comments

Comments
 (0)