Skip to content

Commit

Permalink
revert the mistakenly removed types type hinting
Browse files Browse the repository at this point in the history
  • Loading branch information
Abyss-W4tcher committed Jan 18, 2025
1 parent 4b3d93b commit c5628c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion volatility3/framework/symbols/intermed.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ def enumerations(self) -> Iterable[Any]:
return self._json_object.get("enums", {}).keys()

@property
def types(self):
def types(self) -> Iterable[str]:
"""Returns an iterable (KeysView) of the available symbol type names."""
# self.natives.types (set) is generally very small compared to user_types,
# so the dict conversion overhead can be neglected
Expand Down

0 comments on commit c5628c5

Please sign in to comment.