Update RunCodeFlow.py
Browse files- RunCodeFlow.py +2 -2
RunCodeFlow.py
CHANGED
@@ -5,8 +5,8 @@ logging.set_verbosity_debug()
|
|
5 |
log = logging.get_logger(__name__)
|
6 |
|
7 |
class RunCodeFlow(SequentialFlow):
|
8 |
-
"""This flow is used to run code in a file. It opens up the file in VSCode and waits for the user to save the file.
|
9 |
-
Once the file is saved, it reads the code from the file and executes it. It then returns the output of the execution.
|
10 |
Finally, the flow asks the user for feedback on the execution of the code.
|
11 |
|
12 |
*Input Interface*:
|
|
|
5 |
log = logging.get_logger(__name__)
|
6 |
|
7 |
class RunCodeFlow(SequentialFlow):
|
8 |
+
"""This flow is used to run code in a file. It opens up the file in VSCode and waits for the user to save and close the file.
|
9 |
+
Once the file is saved and closed, it reads the code from the file and executes it. It then returns the output of the execution.
|
10 |
Finally, the flow asks the user for feedback on the execution of the code.
|
11 |
|
12 |
*Input Interface*:
|