Skip to content

Commit

Permalink
Merge pull request #651 from SylvainCorlay/fixup-native-coroutine
Browse files Browse the repository at this point in the history
Fixes debugging with native coroutines
  • Loading branch information
SylvainCorlay authored Apr 26, 2021
2 parents d18d079 + f4e5059 commit 7b7d2fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipykernel/ipkernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def __init__(self, **kwargs):
'file_extension': '.py'
}

async def dispatch_debugpy(self, msg):
def dispatch_debugpy(self, msg):
# The first frame is the socket id, we can drop it
frame = msg[1].bytes.decode('utf-8')
self.log.debug("Debugpy received: %s", frame)
Expand Down

0 comments on commit 7b7d2fd

Please sign in to comment.