Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Format with Black 23.1.0 #95

Merged
merged 1 commit into from
Feb 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions sphinxext/opengraph/descriptionparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ def __init__(
known_titles: Iterable[str] = None,
document: nodes.document = None,
):

# Hack to prevent requirement for the doctree to be passed in.
# It's only used by doctree.walk(...) to print debug messages.
if document is None:
Expand Down Expand Up @@ -43,7 +42,6 @@ def debug(*args, **kwaargs):
self.stop = False

def dispatch_visit(self, node: nodes.Element) -> None:

if self.stop:
raise nodes.StopTraversal

Expand Down Expand Up @@ -90,7 +88,6 @@ def dispatch_visit(self, node: nodes.Element) -> None:
self.description += text

def dispatch_departure(self, node: nodes.Element) -> None:

# Separate title from text
if isinstance(node, nodes.title):
self.description += ":"
Expand Down Expand Up @@ -121,7 +118,6 @@ def get_description(
known_titles: Iterable[str] = None,
document: nodes.document = None,
):

mcv = DescriptionParser(description_length, known_titles, document)
doctree.walkabout(mcv)
return mcv.description