We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cd3d37 commit a5840b8Copy full SHA for a5840b8
griptape/tasks/code_execution_task.py
@@ -6,7 +6,7 @@
6
7
from griptape.artifacts import BaseArtifact, TextArtifact
8
from griptape.tasks.base_task import BaseTask
9
-from griptape.utils import J2, deprecation_warn
+from griptape.utils import J2
10
11
T = TypeVar("T", bound=BaseArtifact) # Return type of task
12
@@ -22,7 +22,6 @@ class CodeExecutionTask(BaseTask[T]):
22
23
@property
24
def input(self) -> TextArtifact:
25
- deprecation_warn("CodeExecutionTask.input is deprecated and will be removed in a future release.")
26
if isinstance(self._input, TextArtifact):
27
return self._input
28
elif callable(self._input):
0 commit comments