Skip to content

Commit 2587a39

Browse files
committed
Delete some now unused stuff
1 parent b146618 commit 2587a39

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

chia/wallet/util/clvm_streamable.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212
from chia.util.streamable import (
1313
Streamable,
1414
function_to_convert_one_item,
15-
is_type_Dict,
16-
is_type_List,
17-
is_type_SpecificOptional,
1815
is_type_Tuple,
1916
recurse_jsonify,
2017
streamable,
@@ -95,16 +92,6 @@ def byte_deserialize_clvm_streamable(
9592
)
9693

9794

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-
10895
# TODO: this is more than _just_ a Streamable, but it is also a Streamable and that's
10996
# useful for now
11097
def is_clvm_streamable(v: object) -> TypeGuard[Streamable]:

0 commit comments

Comments
 (0)