From aec60658534e2c0a55d36559c19d67dd06a44634 2021-11-16 20:12:46 From: Ahmed Fasih Date: 2021-11-16 20:12:46 Subject: [PATCH] darker --- diff --git a/IPython/core/interactiveshell.py b/IPython/core/interactiveshell.py index e76e214..0dec753 100644 --- a/IPython/core/interactiveshell.py +++ b/IPython/core/interactiveshell.py @@ -1814,8 +1814,12 @@ class InteractiveShell(SingletonConfigurable): info = self._object_find(oname) if info.found: docformat = sphinxify if self.sphinxify_docstring else None - return self.inspector._get_info(info.obj, oname, info=info, - detail_level=detail_level, formatter=docformat + return self.inspector._get_info( + info.obj, + oname, + info=info, + detail_level=detail_level, + formatter=docformat, ) else: raise KeyError(oname)