MCPcopy Create free account
hub / github.com/closeio/tasktiger / serialize_retry_method

Function serialize_retry_method

tasktiger/_internal.py:137–141  ·  view source on GitHub ↗
(retry_method: Any)

Source from the content-addressed store, hash-verified

135
136
137def serialize_retry_method(retry_method: Any) -> Tuple[str, Tuple]:
138 if callable(retry_method):
139 return (serialize_func_name(retry_method), ())
140 else:
141 return (serialize_func_name(retry_method[0]), retry_method[1])
142
143
144def get_timestamp(

Callers 3

execute_tasksMethod · 0.90
__init__Method · 0.85

Calls 1

serialize_func_nameFunction · 0.85

Tested by

no test coverage detected