Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from langchain_experimental.utilities import PythonREPL

from langflow.custom import Component
from langflow.io import CodeInput, Output, StrInput
from langflow.io import Output, StrInput
from langflow.schema import Data


Expand All @@ -23,7 +23,7 @@
value="math,pandas",
required=True,
),
CodeInput(
MultilineInput(

Check failure on line 26 in src/backend/base/langflow/components/tools/python_repl_core.py

View workflow job for this annotation

GitHub Actions / Ruff Style Check (3.13)

Ruff (F821)

src/backend/base/langflow/components/tools/python_repl_core.py:26:9: F821 Undefined name `MultilineInput`
name="python_code",
display_name="Python Code",
info="The Python code to execute. Only modules specified in Global Imports can be used.",
Expand Down
Loading