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/__init__.py | |
parent | 166dc18941de6b5bddbab7cd6ef1a9cf48d4d4b4 (diff) |
docs: pep8 formatting
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
Diffstat (limited to 'docs/doxygen/doxyxml/__init__.py')
-rw-r--r-- | docs/doxygen/doxyxml/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/doxygen/doxyxml/__init__.py b/docs/doxygen/doxyxml/__init__.py index d07ccb828b..0aec639eb5 100644 --- a/docs/doxygen/doxyxml/__init__.py +++ b/docs/doxygen/doxyxml/__init__.py @@ -54,6 +54,7 @@ u'Outputs the vital aadvark statistics.' from .doxyindex import DoxyIndex, DoxyFunction, DoxyParam, DoxyClass, DoxyFile, DoxyNamespace, DoxyGroup, DoxyFriend, DoxyOther + def _test(): import os this_dir = os.path.dirname(globals()['__file__']) @@ -65,6 +66,6 @@ def _test(): import doctest return doctest.testmod() + if __name__ == "__main__": _test() - |