From 0cfb70212d219e8729b7fddb94f393f469665ecd Mon Sep 17 00:00:00 2001
From: Josh Morman <jmorman@gnuradio.org>
Date: Wed, 24 Nov 2021 12:50:06 -0500
Subject: docs: pep8 formatting

Signed-off-by: Josh Morman <jmorman@gnuradio.org>
---
 docs/doxygen/doxyxml/doxyindex.py | 23 ++++++++++++++++++-----
 1 file changed, 18 insertions(+), 5 deletions(-)

(limited to 'docs/doxygen/doxyxml/doxyindex.py')

diff --git a/docs/doxygen/doxyxml/doxyindex.py b/docs/doxygen/doxyxml/doxyindex.py
index 5354830a63..1c75ed0458 100644
--- a/docs/doxygen/doxyxml/doxyindex.py
+++ b/docs/doxygen/doxyxml/doxyindex.py
@@ -17,6 +17,7 @@ from .generated import index
 from .base import Base
 from .text import description
 
+
 class DoxyIndex(Base):
     """
     Parses a doxygen xml directory.
@@ -47,7 +48,6 @@ class DoxyIndex(Base):
 
 class DoxyCompMem(Base):
 
-
     kind = None
 
     def __init__(self, *args, **kwargs):
@@ -83,9 +83,11 @@ class DoxyCompMem(Base):
 class DoxyCompound(DoxyCompMem):
     pass
 
+
 class DoxyMember(DoxyCompMem):
     pass
 
+
 class DoxyFunction(DoxyMember):
 
     __module__ = "gnuradio.utils.doxyxml"
@@ -106,9 +108,11 @@ class DoxyFunction(DoxyMember):
                 self._data['params'].append(DoxyParam(prm))
 
     brief_description = property(lambda self: self.data()['brief_description'])
-    detailed_description = property(lambda self: self.data()['detailed_description'])
+    detailed_description = property(
+        lambda self: self.data()['detailed_description'])
     params = property(lambda self: self.data()['params'])
 
+
 Base.mem_classes.append(DoxyFunction)
 
 
@@ -133,9 +137,11 @@ class DoxyParam(DoxyMember):
         return '\n\n'.join(descriptions)
 
     brief_description = property(lambda self: self.data()['brief_description'])
-    detailed_description = property(lambda self: self.data()['detailed_description'])
+    detailed_description = property(
+        lambda self: self.data()['detailed_description'])
     name = property(lambda self: self.data()['declname'])
 
+
 class DoxyParameterItem(DoxyMember):
     """A different representation of a parameter in Doxygen."""
 
@@ -177,9 +183,11 @@ class DoxyClass(DoxyCompound):
         self.process_memberdefs()
 
     brief_description = property(lambda self: self.data()['brief_description'])
-    detailed_description = property(lambda self: self.data()['detailed_description'])
+    detailed_description = property(
+        lambda self: self.data()['detailed_description'])
     params = property(lambda self: self.data()['params'])
 
+
 Base.mem_classes.append(DoxyClass)
 
 
@@ -200,7 +208,9 @@ class DoxyFile(DoxyCompound):
         self.process_memberdefs()
 
     brief_description = property(lambda self: self.data()['brief_description'])
-    detailed_description = property(lambda self: self.data()['detailed_description'])
+    detailed_description = property(
+        lambda self: self.data()['detailed_description'])
+
 
 Base.mem_classes.append(DoxyFile)
 
@@ -221,6 +231,7 @@ class DoxyNamespace(DoxyCompound):
             return
         self.process_memberdefs()
 
+
 Base.mem_classes.append(DoxyNamespace)
 
 
@@ -264,6 +275,7 @@ class DoxyFriend(DoxyMember):
 
     kind = 'friend'
 
+
 Base.mem_classes.append(DoxyFriend)
 
 
@@ -278,4 +290,5 @@ class DoxyOther(Base):
     def can_parse(cls, obj):
         return obj.kind in cls.kinds
 
+
 Base.mem_classes.append(DoxyOther)
-- 
cgit v1.2.3