diff --git a/nbconvert/exporters/html.py b/nbconvert/exporters/html.py index 63ec564d9..f58a0b825 100644 --- a/nbconvert/exporters/html.py +++ b/nbconvert/exporters/html.py @@ -354,7 +354,6 @@ def resources_include_url(name): data = data.replace(b"\n", b"").decode("ascii") src = f"data:{mime_type};base64,{data}" return markupsafe.Markup(src) - resources = super()._init_resources(resources) if resources is None: diff --git a/nbconvert/exporters/slides.py b/nbconvert/exporters/slides.py index e571a90c0..62a11402b 100644 --- a/nbconvert/exporters/slides.py +++ b/nbconvert/exporters/slides.py @@ -41,7 +41,7 @@ def preprocess(self, nb, resources=None): in_fragment = False - for index, cell in enumerate(nb.cells[first_slide_ix + 1 :], start=(first_slide_ix + 1)): + for index, cell in enumerate(nb.cells[first_slide_ix + 1:], start=(first_slide_ix + 1)): previous_cell = nb.cells[index - 1] # Slides are
elements in the HTML, subslides (the vertically diff --git a/nbconvert/filters/ansi.py b/nbconvert/filters/ansi.py index a9882e10e..ac91fc89f 100644 --- a/nbconvert/filters/ansi.py +++ b/nbconvert/filters/ansi.py @@ -197,7 +197,7 @@ def _ansi2anything(text, converter): pass # Invalid color specification else: pass # Not a color code - chunk, text = text[: m.start()], text[m.end() :] + chunk, text = text[: m.start()], text[m.end():] else: chunk, text = text, "" diff --git a/nbconvert/filters/citation.py b/nbconvert/filters/citation.py index 0db092a42..e078ceed0 100644 --- a/nbconvert/filters/citation.py +++ b/nbconvert/filters/citation.py @@ -42,7 +42,7 @@ def citation2latex(s): outtext = "" startpos = 0 for citation in parser.citelist: - outtext += s[startpos : citation[1]] + outtext += s[startpos: citation[1]] outtext += "\\cite{%s}" % citation[0] startpos = citation[2] if len(citation) == 3 else -1 outtext += s[startpos:] if startpos != -1 else "" diff --git a/nbconvert/filters/markdown_mistune.py b/nbconvert/filters/markdown_mistune.py index d9ecf0c5e..0c698fc27 100644 --- a/nbconvert/filters/markdown_mistune.py +++ b/nbconvert/filters/markdown_mistune.py @@ -385,7 +385,7 @@ def _embed_image_or_attachment(self, src: str) -> str: attachment_prefix = "attachment:" if src.startswith(attachment_prefix): - name = src[len(attachment_prefix) :] + name = src[len(attachment_prefix):] if name not in self.attachments: msg = f"missing attachment: {name}" diff --git a/tests/base.py b/tests/base.py index ff2bec3d5..d854900a8 100644 --- a/tests/base.py +++ b/tests/base.py @@ -176,15 +176,15 @@ def assert_big_text_equal(a, b, chunk_size=80): to give better info than vanilla assertEqual for large text blobs. """ for i in range(0, len(a), chunk_size): - chunk_a = a[i : i + chunk_size] - chunk_b = b[i : i + chunk_size] + chunk_a = a[i: i + chunk_size] + chunk_b = b[i: i + chunk_size] assert chunk_a == chunk_b, "[offset: %i]\n%r != \n%r" % (i, chunk_a, chunk_b) if len(a) > len(b): raise AssertionError( - "Length doesn't match (%i > %i). Extra text:\n%r" % (len(a), len(b), a[len(b) :]) + "Length doesn't match (%i > %i). Extra text:\n%r" % (len(a), len(b), a[len(b):]) ) if len(a) < len(b): raise AssertionError( - "Length doesn't match (%i < %i). Extra text:\n%r" % (len(a), len(b), a[len(b) :]) + "Length doesn't match (%i < %i). Extra text:\n%r" % (len(a), len(b), a[len(b):]) )