Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
rculbertson committed Jan 28, 2025
1 parent 72dfb40 commit d566f20
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modal/_runtime/container_io_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,8 @@ def _args_and_kwargs(self) -> tuple[tuple[Any, ...], dict[str, list[Any]]]:
def call_finalized_function(self) -> Any:
logger.debug(f"Starting input {self.input_ids}")
args, kwargs = self._args_and_kwargs()
print(f"--- Calling function {args} {kwargs}")
res = self.finalized_function.callable(*args, **kwargs)
logger.debug(f"Finished input {self.input_ids} {res}")
logger.debug(f"Finished input {self.input_ids}")
return res

def validate_output_data(self, data: Any) -> list[Any]:
Expand Down

0 comments on commit d566f20

Please sign in to comment.