diff options
author | LangLangBart <92653266+LangLangBart@users.noreply.github.com> | 2023-09-15 18:37:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 09:37:09 -0700 |
commit | 775d051b4bcdbe07fbd38fae4d3e36e79234eb56 (patch) | |
tree | c8d3c26ac42ef9a1ca5cab601f43488675375161 /continuedev/src/continuedev/core | |
parent | ffc242ef2ab4ef16306afb237a781937a6c6d52c (diff) | |
download | sncontinue-775d051b4bcdbe07fbd38fae4d3e36e79234eb56.tar.gz sncontinue-775d051b4bcdbe07fbd38fae4d3e36e79234eb56.tar.bz2 sncontinue-775d051b4bcdbe07fbd38fae4d3e36e79234eb56.zip |
fix: some typos (#478)
Diffstat (limited to 'continuedev/src/continuedev/core')
-rw-r--r-- | continuedev/src/continuedev/core/autopilot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/continuedev/src/continuedev/core/autopilot.py b/continuedev/src/continuedev/core/autopilot.py index f24f5ad7..a27b0cb7 100644 --- a/continuedev/src/continuedev/core/autopilot.py +++ b/continuedev/src/continuedev/core/autopilot.py @@ -251,9 +251,9 @@ class Autopilot(ContinueBaseModel): def handle_manual_edits(self, edits: List[FileEditWithFullContents]): for edit in edits: self._manual_edits_buffer.append(edit) - # TODO: You're storing a lot of unecessary data here. Can compress into EditDiffs on the spot, and merge. + # TODO: You're storing a lot of unnecessary data here. Can compress into EditDiffs on the spot, and merge. # self._manual_edits_buffer = merge_file_edit(self._manual_edits_buffer, edit) - # Note that this is being overriden to do nothing in DemoAgent + # Note that this is being overridden to do nothing in DemoAgent async def handle_command_output(self, output: str): get_traceback_funcs = [get_python_traceback, get_javascript_traceback] |