You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"message": "Codebase parsing initiated, this may take some time depending on the size of the codebase. Use the `check_parsing_status` tool to check if the parse has completed."
66
-
}
62
+
return {"message": "Codebase parsing initiated, this may take some time depending on the size of the codebase. Use the `check_parsing_status` tool to check if the parse has completed."}
67
63
return {"message": "Codebase is already being parsed.", "status": "error"}
68
64
69
65
@@ -83,7 +79,7 @@ async def execute_codemod(codemod: Annotated[str, "The python codemod code to ex
83
79
84
80
try:
85
81
awaitstate.parse_task
86
-
if(state.parsed_codebaseisNone):
82
+
ifstate.parsed_codebaseisNone:
87
83
return {"error": "Codebase path is not set."}
88
84
else:
89
85
# TODO: Implement proper sandboxing for code execution
0 commit comments