Skip to content

Commit c8e53ff

Browse files
committed
Core: Fix small typing issue in previous patch
1 parent 50b5d22 commit c8e53ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility3/framework/contexts/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,9 @@ def object_from_symbol(
272272
symbol_name: str,
273273
native_layer_name: Optional[str] = None,
274274
absolute: bool = False,
275-
object_type: Optional[Union[str, interfaces.objects.ObjectInterface]] = None,
275+
object_type: Optional[Union[str, "interfaces.objects.ObjectInterface"]] = None,
276276
**kwargs,
277-
) -> interfaces.objects.ObjectInterface:
277+
) -> "interfaces.objects.ObjectInterface":
278278
"""Returns an object based on a specific symbol (containing type and
279279
offset information) and the layer_name of the Module. This will throw
280280
a ValueError if the symbol does not contain an associated type, or if

0 commit comments

Comments
 (0)