Skip to content

Commit 694c191

Browse files
authored
Merge pull request #719 from Carreau/semico
Formatting: remove semicolon
2 parents 4a4ee44 + 3918062 commit 694c191

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ipykernel/debugger.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -294,17 +294,17 @@ async def dumpCell(self, message):
294294
return reply
295295

296296
async def setBreakpoints(self, message):
297-
source = message['arguments']['source']['path'];
298-
self.breakpoint_list[source] = message['arguments']['breakpoints']
299-
return await self._forward_message(message);
297+
source = message["arguments"]["source"]["path"]
298+
self.breakpoint_list[source] = message["arguments"]["breakpoints"]
299+
return await self._forward_message(message)
300300

301301
async def source(self, message):
302302
reply = {
303303
'type': 'response',
304304
'request_seq': message['seq'],
305305
'command': message['command']
306306
}
307-
source_path = message['arguments']['source']['path'];
307+
source_path = message["arguments"]["source"]["path"]
308308
if os.path.isfile(source_path):
309309
with open(source_path) as f:
310310
reply['success'] = True
@@ -389,7 +389,7 @@ async def configurationDone(self, message):
389389
'success': True,
390390
'command': message['command']
391391
}
392-
return reply;
392+
return reply
393393

394394
async def debugInfo(self, message):
395395
breakpoint_list = []

0 commit comments

Comments
 (0)