Remove old return statement

This commit is contained in:
David Ebbo 2025-04-05 18:17:59 +02:00
parent 25b16afc93
commit 630c8de850

View File

@ -344,7 +344,6 @@ class BlenderMCPServer:
captured_output = capture_buffer.getvalue() captured_output = capture_buffer.getvalue()
return {"executed": True, "result": captured_output} return {"executed": True, "result": captured_output}
return {"executed": True}
except Exception as e: except Exception as e:
raise Exception(f"Code execution error: {str(e)}") raise Exception(f"Code execution error: {str(e)}")