Skip to content

Commit a68be50

Browse files
committed
Revert "Typing fix"
This reverts commit c82d432.
1 parent db0a8a0 commit a68be50

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

volatility3/framework/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Check the python version to ensure it's suitable
66
import glob
77
import sys
8+
from volatility3.framework import check_python_version as check_python_version
89
import zipfile
910
import importlib
1011
import inspect
@@ -57,7 +58,7 @@ def __init__(self, value: Any, cls: Type) -> None:
5758
self.default_value = value
5859
self.cls = cls
5960

60-
def __get__(self, obj: Any, get_type: Optional[Type] = None) -> Any:
61+
def __get__(self, obj: Any, get_type: Type = Optional[None]) -> Any:
6162
if type is self.cls:
6263
if hasattr(self.default_value, "__get__"):
6364
return self.default_value.__get__(obj, get_type)

0 commit comments

Comments
 (0)