Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dagardner-nv committed May 30, 2024
1 parent fe88ec7 commit de2aceb
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions morpheus/llm/nodes/langchain_agent_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ def __init__(self, agent_executor: "AgentExecutor"):
def get_input_names(self):
return self._input_names

async def _run_single(self,
metadata: dict[str, typing.Any] = None,
**kwargs) -> dict[str, typing.Any]:
async def _run_single(self, metadata: dict[str, typing.Any] = None, **kwargs) -> dict[str, typing.Any]:

all_lists = all(isinstance(v, list) for v in kwargs.values())

Expand Down

0 comments on commit de2aceb

Please sign in to comment.