From 49d02f78711c4733d4047ab6c6757f08e1497a90 2021-09-20 23:16:04 From: yuji96 Date: 2021-09-20 23:16:04 Subject: [PATCH] fix coding style with darker --- diff --git a/IPython/lib/display.py b/IPython/lib/display.py index b9e08de..e309398 100644 --- a/IPython/lib/display.py +++ b/IPython/lib/display.py @@ -281,11 +281,13 @@ class IFrame(object): params = "?" + urlencode(self.params) else: params = "" - return self.iframe.format(src=self.src, - width=self.width, - height=self.height, - params=params, - extra=self.extra) + return self.iframe.format( + src=self.src, + width=self.width, + height=self.height, + params=params, + extra=self.extra, + ) class YouTubeVideo(IFrame):