Skip to content

Commit 7b7d2fd

Browse files
Merge pull request #651 from SylvainCorlay/fixup-native-coroutine
Fixes debugging with native coroutines
2 parents d18d079 + f4e5059 commit 7b7d2fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipykernel/ipkernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def __init__(self, **kwargs):
148148
'file_extension': '.py'
149149
}
150150

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

0 commit comments

Comments
 (0)