From ceac326d5968b3a58fdcf1ae67f66d4bcac8b484 2023-03-04 06:47:13 From: Quentin Peter Date: 2023-03-04 06:47:13 Subject: [PATCH] style --- diff --git a/IPython/core/magics/execution.py b/IPython/core/magics/execution.py index 80b53e0..228cbd9 100644 --- a/IPython/core/magics/execution.py +++ b/IPython/core/magics/execution.py @@ -423,7 +423,7 @@ class ExecutionMagics(Magics): @no_var_expand @line_cell_magic @needs_local_scope - def debug(self, line='', cell=None, local_ns=None): + def debug(self, line="", cell=None, local_ns=None): """Activate the interactive debugger. This magic command support two ways of activating debugger. @@ -870,8 +870,9 @@ class ExecutionMagics(Magics): return stats - def _run_with_debugger(self, code, code_ns, filename=None, - bp_line=None, bp_file=None, local_ns=None): + def _run_with_debugger( + self, code, code_ns, filename=None, bp_line=None, bp_file=None, local_ns=None + ): """ Run `code` in debugger with a break point.