Remove print

This commit is contained in:
Nuno Campos
2024-11-11 17:56:10 -08:00
parent 87fc519ce7
commit b3a4eaa967
+1 -2
View File
@@ -22,8 +22,7 @@ from langgraph.types import Command, PregelExecutableTask, Send
def is_task_id(task_id: str) -> bool:
"""Check if a string is a valid task id."""
try:
u = UUID(task_id)
print(u.version)
UUID(task_id)
except ValueError:
return False
return True