diff options
author | Josh Morman <jmorman@gnuradio.org> | 2021-11-24 12:50:06 -0500 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-11-24 14:41:53 -0500 |
commit | 0cfb70212d219e8729b7fddb94f393f469665ecd (patch) | |
tree | 53889b076b674cdf599da7fd0ca02c27692d9856 /docs/doxygen/doxyxml/generated/index.py | |
parent | 166dc18941de6b5bddbab7cd6ef1a9cf48d4d4b4 (diff) |
docs: pep8 formatting
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
Diffstat (limited to 'docs/doxygen/doxyxml/generated/index.py')
-rw-r--r-- | docs/doxygen/doxyxml/generated/index.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/doxygen/doxyxml/generated/index.py b/docs/doxygen/doxyxml/generated/index.py index c58407dbfe..7ffbdf191a 100644 --- a/docs/doxygen/doxyxml/generated/index.py +++ b/docs/doxygen/doxyxml/generated/index.py @@ -12,6 +12,7 @@ from . import compound from . import indexsuper as supermod + class DoxygenTypeSub(supermod.DoxygenType): def __init__(self, version=None, compound=None): supermod.DoxygenType.__init__(self, version, compound) @@ -32,6 +33,7 @@ class DoxygenTypeSub(supermod.DoxygenType): return results + supermod.DoxygenType.subclass = DoxygenTypeSub # end class DoxygenTypeSub @@ -53,6 +55,7 @@ class CompoundTypeSub(supermod.CompoundType): return results + supermod.CompoundType.subclass = CompoundTypeSub # end class CompoundTypeSub @@ -62,6 +65,7 @@ class MemberTypeSub(supermod.MemberType): def __init__(self, kind=None, refid=None, name=''): supermod.MemberType.__init__(self, kind, refid, name) + supermod.MemberType.subclass = MemberTypeSub # end class MemberTypeSub @@ -74,4 +78,3 @@ def parse(inFilename): rootObj.build(rootNode) return rootObj - |