Skip to content

Commit

Permalink
Remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed Feb 6, 2024
1 parent 124a24e commit 976e8f9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/api/src/backend/views/Tasks.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import json
from pprint import pprint

from django.db import IntegrityError, OperationalError

Expand Down
1 change: 0 additions & 1 deletion src/engine/src/core/mappers/ArgMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ def __init__(self, dao: WorkflowExecutorStateDAO):

def get_value_by_key(self, key):
arg = self._dao.get_state().ctx.args.get(key, None)
print(f"GETTING VALUE FOR ARG {key}:", arg)
if arg == None: return None
return arg.value

0 comments on commit 976e8f9

Please sign in to comment.