Skip to content

Commit

Permalink
Remove print for local executors (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite authored Jul 19, 2024
1 parent e7ff365 commit c3f0437
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cubed/runtime/executors/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ def execute_dag(

@execution_stats
def run_func(input, func=None, config=None, name=None, compute_id=None):
print(f"{compute_id} {name}: running on {input}")
result = func(input, config=config)
return result
return func(input, config=config)


def unpickle_and_call(f, inp, **kwargs):
Expand Down

0 comments on commit c3f0437

Please sign in to comment.