diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-06 17:50:50 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-06 17:50:50 -0400 |
commit | 7af8208d0adb9586e60bd67fd6f4f321a35262d8 (patch) | |
tree | e3b5e19f9a71d1267d8cd7e1271c47a02b9641cf /extension/react-app/src/tabs/gui.tsx | |
parent | 42d9dadcaac714b7d6e789fbdeafb2dad04dbed7 (diff) | |
download | sncontinue-7af8208d0adb9586e60bd67fd6f4f321a35262d8.tar.gz sncontinue-7af8208d0adb9586e60bd67fd6f4f321a35262d8.tar.bz2 sncontinue-7af8208d0adb9586e60bd67fd6f4f321a35262d8.zip |
trying to reliably capture terminal output in vsc
Diffstat (limited to 'extension/react-app/src/tabs/gui.tsx')
-rw-r--r-- | extension/react-app/src/tabs/gui.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extension/react-app/src/tabs/gui.tsx b/extension/react-app/src/tabs/gui.tsx index c66172a9..308dfd57 100644 --- a/extension/react-app/src/tabs/gui.tsx +++ b/extension/react-app/src/tabs/gui.tsx @@ -43,6 +43,10 @@ function GUI(props: GUIProps) { // description: // "Run `python3 /Users/natesesti/Desktop/continue/extension/examples/python/main.py`", // }, + // observation: { + // error: + // "Traceback (most recent call last):\n File \"/Users/natesesti/Desktop/continue/extension/examples/python/main.py\", line 7, in <module>\n print(sum(first, second))\n ^^^^^^^^^^^^^^^^^^\n File \"/Users/natesesti/Desktop/continue/extension/examples/python/sum.py\", line 2, in sum\n return a + b\n ~~^~~\nTypeError: unsupported operand type(s) for +: 'int' and 'str'", + // }, // output: [ // { // traceback: { |