Skip to content

Commit

Permalink
fix return val
Browse files Browse the repository at this point in the history
  • Loading branch information
prism-admin committed Jul 20, 2023
1 parent 65abebb commit 381f4bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prism/cli/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ def build_agent(self,
# run the agent (`prism agent build`). We run the agent in a separate function,
# so focus on just building it for now.
else:
return agent.apply()
agent.apply()
return agent

def run_agent(self, agent: Agent):
"""
Expand Down

0 comments on commit 381f4bd

Please sign in to comment.