Skip to content
Snippets Groups Projects
Commit 0a414280 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix python3 compatibility issues with doc fix

parent a4f287f6
No related branches found
No related tags found
No related merge requests found
......@@ -7,5 +7,4 @@ def get_include():
return __import__('pkg_resources').resource_filename(__name__, 'include')
# gets sphinx autodoc done right - don't remove it
__all__ = [k for k in dir() if not k.startswith('_')]
del k
__all__ = [_ for _ in dir() if not _.startswith('_')]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment