From 7d4445743ee27266003ef407a9090bd21170a848 2022-05-06 00:16:19 From: Artur Svistunov <18216480+madbird1304@users.noreply.github.com> Date: 2022-05-06 00:16:19 Subject: [PATCH] issue#13073: Fix formatting --- diff --git a/IPython/core/hooks.py b/IPython/core/hooks.py index 0f1f5af..f73c565 100644 --- a/IPython/core/hooks.py +++ b/IPython/core/hooks.py @@ -155,8 +155,10 @@ def clipboard_get(self): """ Get text from the clipboard. """ from ..lib.clipboard import ( - osx_clipboard_get, tkinter_clipboard_get, - win32_clipboard_get, wayland_clipboard_get, + osx_clipboard_get, + tkinter_clipboard_get, + win32_clipboard_get, + wayland_clipboard_get, ) if sys.platform == 'win32': chain = [win32_clipboard_get, tkinter_clipboard_get]