summaryrefslogtreecommitdiff
path: root/docs/_ext
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2026-01-18 21:26:56 +0100
committerJacob Walls <jacobtylerwalls@gmail.com>2026-03-30 15:55:07 -0400
commit0ee44c674cf61efbca2056c40f3e4f2335aaeee6 (patch)
treea27edf3c3c9ee9c50ba78df9e158b28be408a8bb /docs/_ext
parent89b4d944f7e331e267aa1030e295f29355b78172 (diff)
[5.2.x] Applied Black's 2026 stable style.
https://github.com/psf/black/releases/tag/26.1.0 Backport of 6cff02078799b7c683a0d39630d49ab4fe532e7c from main.
Diffstat (limited to 'docs/_ext')
-rw-r--r--docs/_ext/djangodocs.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/docs/_ext/djangodocs.py b/docs/_ext/djangodocs.py
index 77e24ff0eb..a979a8e30a 100644
--- a/docs/_ext/djangodocs.py
+++ b/docs/_ext/djangodocs.py
@@ -83,9 +83,7 @@ class VersionDirective(Directive):
if len(self.arguments) > 1:
msg = """Only one argument accepted for directive '{directive_name}::'.
Comments should be provided as content,
- not as an extra argument.""".format(
- directive_name=self.name
- )
+ not as an extra argument.""".format(directive_name=self.name)
raise self.error(msg)
env = self.state.document.settings.env
@@ -255,17 +253,14 @@ def visit_console_html(self, node):
# has been used on it.
self.document._console_directive_used_flag = True
uid = node["uid"]
- self.body.append(
- """\
+ self.body.append("""\
<div class="console-block" id="console-block-%(id)s">
<input class="c-tab-unix" id="c-tab-%(id)s-unix" type="radio" name="console-%(id)s" \
checked>
<label for="c-tab-%(id)s-unix" title="Linux/macOS">&#xf17c/&#xf179</label>
<input class="c-tab-win" id="c-tab-%(id)s-win" type="radio" name="console-%(id)s">
<label for="c-tab-%(id)s-win" title="Windows">&#xf17a</label>
-<section class="c-content-unix" id="c-content-%(id)s-unix">\n"""
- % {"id": uid}
- )
+<section class="c-content-unix" id="c-content-%(id)s-unix">\n""" % {"id": uid})
try:
self.visit_literal_block(node)
except nodes.SkipNode: