File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change 12
12
from chia .util .streamable import (
13
13
Streamable ,
14
14
function_to_convert_one_item ,
15
- is_type_Dict ,
16
- is_type_List ,
17
- is_type_SpecificOptional ,
18
15
is_type_Tuple ,
19
16
recurse_jsonify ,
20
17
streamable ,
@@ -95,16 +92,6 @@ def byte_deserialize_clvm_streamable(
95
92
)
96
93
97
94
98
- def is_compound_type (typ : Any ) -> bool :
99
- return is_type_SpecificOptional (typ ) or is_type_Tuple (typ ) or is_type_List (typ ) or is_type_Dict (typ )
100
-
101
-
102
- # TODO: this is more than _just_ a Streamable, but it is also a Streamable and that's
103
- # useful for now
104
- def is_clvm_streamable_type (v : type [object ]) -> TypeGuard [type [Streamable ]]:
105
- return issubclass (v , Streamable ) and hasattr (v , "_clvm_streamable" )
106
-
107
-
108
95
# TODO: this is more than _just_ a Streamable, but it is also a Streamable and that's
109
96
# useful for now
110
97
def is_clvm_streamable (v : object ) -> TypeGuard [Streamable ]:
You can’t perform that action at this time.
0 commit comments