Skip to content

Commit

Permalink
Fixes linter flagged line length.
Browse files Browse the repository at this point in the history
Signed-off-by: Putnam, Kevin <[email protected]>
  • Loading branch information
intelkevinputnam committed May 25, 2023
1 parent c3aac6a commit a1e9f37
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions breathe/renderer/sphinxrenderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -886,8 +886,9 @@ def pullup(node, typ, dest):
detailed = []
for candNode in detailedCand:
breathe_directive_name = self.context.directive_args[0]
if breathe_directive_name in self.app.config.breathe_detaileddesc_pullup_types:
for nodeTypeString in self.app.config.breathe_detaileddesc_pullup_types[breathe_directive_name]:
pullup_types = self.app.config.breathe_detaileddesc_pullup_types
if breathe_directive_name in pullup_types:
for nodeTypeString in pullup_types[breathe_directive_name]:
if nodeTypeString == "note":
pullup(candNode, nodes.note, admonitions)
elif nodeTypeString == "warning":
Expand Down

0 comments on commit a1e9f37

Please sign in to comment.