Skip to content

Commit 5306c3f

Browse files
author
Golf Player
committed
Fixing flake8 errors
1 parent 9d7a1f4 commit 5306c3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nbclient/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ class NotebookClient(LoggingConfigurable):
240240
allow_none=True,
241241
help=dedent(
242242
"""
243-
A callable which executes after a cell execution is complete. It is
243+
A callable which executes after a cell execution is complete. It is
244244
called even when a cell results in a failure.
245245
"""
246246
),
@@ -699,7 +699,7 @@ def _check_raise_for_error(self, cell, cell_index, exec_reply):
699699
if (exec_reply is not None) and exec_reply['content']['status'] == 'error':
700700
run_hook(self.on_cell_error, cell, cell_index)
701701
if self.force_raise_errors or not cell_allows_errors:
702-
raise CellExecutionError.from_cell_and_msg(cell, exec_reply['content'])
702+
raise CellExecutionError.from_cell_and_msg(cell, exec_reply['content'])
703703

704704
async def async_execute_cell(self, cell, cell_index, execution_count=None, store_history=True):
705705
"""

0 commit comments

Comments
 (0)