We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8818640 commit 0523d3eCopy full SHA for 0523d3e
1 file changed
sourcehold/structure_tools/Structure.py
@@ -1,3 +1,4 @@
1
+from typing import Dict
2
from sourcehold.structure_tools.Buffer import Buffer
3
from sourcehold.structure_tools.DataProperty import DataProperty
4
@@ -21,7 +22,7 @@ def __init__(self):
21
22
# self.fields[key].fset(self, value)
23
24
@classmethod
- def get_fields(cls) -> dict[str, Field]:
25
+ def get_fields(cls) -> Dict[str, Field]:
26
fields = {}
27
28
tree = list(cls.__mro__)
0 commit comments