Skip to content

Commit 26d8314

Browse files
committed
Work around spell checker
1 parent 97ab83c commit 26d8314

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/sphinx_notion/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ def _get_background_color_classes() -> set[str]:
111111

112112
@beartype
113113
def _color_from_node(*, node: nodes.inline) -> Color | None:
114-
"""
115-
Extract Notion color from CSS classes created by ``sphinxcontrib-text-
116-
styles``.
114+
"""Extract Notion color from CSS classes.
115+
116+
Classes created by ``sphinxcontrib-text-styles``.
117117
"""
118118
classes = node.attributes.get("classes", [])
119119
color_mapping = _get_text_color_mapping()
@@ -127,9 +127,9 @@ def _color_from_node(*, node: nodes.inline) -> Color | None:
127127

128128
@beartype
129129
def _background_color_from_node(*, node: nodes.inline) -> BGColor | None:
130-
"""
131-
Extract Notion background color from CSS classes created by
132-
``sphinxcontrib-text-styles``.
130+
"""Extract Notion background color from CSS classes.
131+
132+
Classes created by ``sphinxcontrib-text-styles``.
133133
"""
134134
classes = node.attributes.get("classes", [])
135135
bg_color_mapping: dict[str, BGColor] = {

0 commit comments

Comments
 (0)