Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

handle runInTerminal response #53

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ptvsd/ipcjson.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,10 @@ def on_request(self, request):
def on_response(self, msg):
# TODO: docstring
# this class is only used for server side only for now
raise NotImplementedError
if msg['type'] == 'response' and msg['command'] == 'runInTerminal':
pass
else:
raise NotImplementedError

def on_event(self, msg):
# TODO: docstring
Expand Down