Skip to content

Commit 31c9d19

Browse files
committed
remove prints
1 parent 735f753 commit 31c9d19

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/gaiaflow/core/runner.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,13 @@ def run(
4949
print(f"Running {func_path} with args: {args} and kwargs :{kwargs}")
5050
result = func(*args, **kwargs)
5151
print("Function result:", result)
52-
print("mode::::", mode, type(mode))
5352
if mode == "prod" or mode == "prod_local":
5453
# This is needed when we use KubernetesPodOperator and want to
5554
# share information via XCOM.
5655
_write_xcom_result(result)
5756
if mode == "dev_docker":
58-
print("inside dev_docker condition")
5957
with open("/tmp/script.out", "wb+") as tmp:
6058
pickle.dump(result, tmp)
61-
# print("printing result now:::")
62-
# print(json.dumps(result))
6359

6460
return result
6561

0 commit comments

Comments
 (0)