diff options
| author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2022-02-20 03:05:56 +0000 |
|---|---|---|
| committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2022-02-20 03:13:45 +0000 |
| commit | 5775912455c25ee82734e1ff319a32f55946d79b (patch) | |
| tree | e75fe3b61f6d92afb29fd38478e03d96179af015 /sphinx/transforms | |
| parent | 6bb7b891a16fbcd5fad1f88fb472505549b9c084 (diff) | |
| download | sphinx-git-5775912455c25ee82734e1ff319a32f55946d79b.tar.gz | |
Collapse single line docstrings
Diffstat (limited to 'sphinx/transforms')
| -rw-r--r-- | sphinx/transforms/__init__.py | 3 | ||||
| -rw-r--r-- | sphinx/transforms/compact_bullet_list.py | 3 | ||||
| -rw-r--r-- | sphinx/transforms/i18n.py | 3 | ||||
| -rw-r--r-- | sphinx/transforms/post_transforms/__init__.py | 3 | ||||
| -rw-r--r-- | sphinx/transforms/post_transforms/code.py | 3 | ||||
| -rw-r--r-- | sphinx/transforms/post_transforms/images.py | 3 | ||||
| -rw-r--r-- | sphinx/transforms/references.py | 3 |
7 files changed, 7 insertions, 14 deletions
diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 3fa74c45b..a2a592221 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -1,5 +1,4 @@ -"""Docutils transforms used by Sphinx when reading documents. -""" +"""Docutils transforms used by Sphinx when reading documents.""" import re import unicodedata diff --git a/sphinx/transforms/compact_bullet_list.py b/sphinx/transforms/compact_bullet_list.py index b35df3cb1..4bf633237 100644 --- a/sphinx/transforms/compact_bullet_list.py +++ b/sphinx/transforms/compact_bullet_list.py @@ -1,5 +1,4 @@ -"""Docutils transforms used by Sphinx when reading documents. -""" +"""Docutils transforms used by Sphinx when reading documents.""" from typing import Any, Dict, List, cast diff --git a/sphinx/transforms/i18n.py b/sphinx/transforms/i18n.py index a45ec02d1..4909cebc1 100644 --- a/sphinx/transforms/i18n.py +++ b/sphinx/transforms/i18n.py @@ -1,5 +1,4 @@ -"""Docutils transforms used by Sphinx when reading documents. -""" +"""Docutils transforms used by Sphinx when reading documents.""" from os import path from textwrap import indent diff --git a/sphinx/transforms/post_transforms/__init__.py b/sphinx/transforms/post_transforms/__init__.py index 9b3c84edf..94a162963 100644 --- a/sphinx/transforms/post_transforms/__init__.py +++ b/sphinx/transforms/post_transforms/__init__.py @@ -1,5 +1,4 @@ -"""Docutils transforms used by Sphinx. -""" +"""Docutils transforms used by Sphinx.""" import re from typing import Any, Dict, List, Optional, Sequence, Tuple, Type, cast diff --git a/sphinx/transforms/post_transforms/code.py b/sphinx/transforms/post_transforms/code.py index a47555bd1..3c3f54328 100644 --- a/sphinx/transforms/post_transforms/code.py +++ b/sphinx/transforms/post_transforms/code.py @@ -1,5 +1,4 @@ -"""transforms for code-blocks. -""" +"""transforms for code-blocks.""" import sys from typing import Any, Dict, List, NamedTuple diff --git a/sphinx/transforms/post_transforms/images.py b/sphinx/transforms/post_transforms/images.py index 3f2c99b0f..ac9c4225e 100644 --- a/sphinx/transforms/post_transforms/images.py +++ b/sphinx/transforms/post_transforms/images.py @@ -1,5 +1,4 @@ -"""Docutils transforms used by Sphinx. -""" +"""Docutils transforms used by Sphinx.""" import os import re diff --git a/sphinx/transforms/references.py b/sphinx/transforms/references.py index da899f952..647c83e12 100644 --- a/sphinx/transforms/references.py +++ b/sphinx/transforms/references.py @@ -1,5 +1,4 @@ -"""Docutils transforms used by Sphinx. -""" +"""Docutils transforms used by Sphinx.""" from typing import TYPE_CHECKING, Any, Dict |
