Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ukclivecox committed Sep 27, 2021
1 parent 7c4d627 commit 238ad3a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tempo/metaflow/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ def running_aws_batch(step: Step) -> bool:
"""
running_on_aws_batch = False
print(step.decorators) # pylint: disable=maybe-no-member
for deco in step.decorators: # pylint: disable=maybe-no-member
if isinstance(deco, BatchDecorator):
running_on_aws_batch = True
Expand Down

0 comments on commit 238ad3a

Please sign in to comment.