summaryrefslogtreecommitdiff
path: root/continuedev/src/continuedev/steps/on_traceback.py
diff options
context:
space:
mode:
Diffstat (limited to 'continuedev/src/continuedev/steps/on_traceback.py')
-rw-r--r--continuedev/src/continuedev/steps/on_traceback.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/steps/on_traceback.py b/continuedev/src/continuedev/steps/on_traceback.py
index de668775..a0c4d07b 100644
--- a/continuedev/src/continuedev/steps/on_traceback.py
+++ b/continuedev/src/continuedev/steps/on_traceback.py
@@ -9,6 +9,6 @@ class DefaultOnTracebackStep(Step):
hide: bool = True
async def run(self, sdk: ContinueSDK):
- sdk.run_step(SimpleChatStep(
+ await sdk.run_step(SimpleChatStep(
name="Help With Traceback",
user_input=f"""I got the following error, can you please help explain how to fix it?\n\n{self.output}"""))