@@ -29,7 +29,7 @@ def decode(self, data: str) -> str:
29
29
return base64 .b64decode (data ).decode ()
30
30
31
31
32
- def _object_hook (data : dict [str , Any ]) -> Any : # noqa: ANN401
32
+ def _object_hook (data : dict [str , Any ]) -> Any :
33
33
if "__type" in data :
34
34
error_cls = _import_class_from_qualified_name (data ["__type" ])
35
35
return error_cls (** data ["attributes" ])
@@ -39,15 +39,15 @@ def _object_hook(data: dict[str, Any]) -> Any: # noqa: ANN401
39
39
40
40
@final
41
41
class JsonEncoder (IEncoder [Any , str ]):
42
- def encode (self , data : Any ) -> str : # noqa: ANN401
42
+ def encode (self , data : Any ) -> str :
43
43
if isinstance (data , Exception ):
44
44
data = {
45
45
"__type" : _classname (data ),
46
46
"attributes" : data .__dict__ ,
47
47
}
48
48
return json .dumps (data )
49
49
50
- def decode (self , data : str ) -> Any : # noqa: ANN401
50
+ def decode (self , data : str ) -> Any :
51
51
return json .loads (data , object_hook = _object_hook )
52
52
53
53
@@ -60,7 +60,7 @@ def _classname(obj: object) -> str:
60
60
return name
61
61
62
62
63
- def _import_class_from_qualified_name (qualified_name : str ) -> Any : # noqa: ANN401
63
+ def _import_class_from_qualified_name (qualified_name : str ) -> Any :
64
64
module_name , class_name = qualified_name .rsplit ("." , 1 )
65
65
module = importlib .import_module (module_name )
66
66
return getattr (module , class_name )
0 commit comments