Skip to content

Commit

Permalink
revert example chainlet
Browse files Browse the repository at this point in the history
  • Loading branch information
spal1 committed Dec 20, 2024
1 parent b6f7b5b commit 8822f3e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions truss-chains/truss_chains/example_chainlet.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ class HelloWorld(chains.ChainletBase):
def __init__(self, rand_int=chains.depends(RandInt, retries=3)) -> None:
self._rand_int = rand_int

def is_ready(self):
pass

def run_remote(self, max_value: int) -> str:
num_repetitions = self._rand_int.run_remote(max_value)
return "Hello World! " * num_repetitions
Expand Down

0 comments on commit 8822f3e

Please sign in to comment.