We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a176b5 commit d485d48Copy full SHA for d485d48
exhale/configs.py
@@ -51,12 +51,7 @@
51
from sphinx.util import logging
52
from types import FunctionType, ModuleType
53
54
-try:
55
- # Python 2 StringIO
56
- from cStringIO import StringIO
57
-except ImportError:
58
- # Python 3 StringIO
59
- from io import StringIO
+from io import StringIO
60
61
62
logger = logging.getLogger(__name__)
exhale/graph.py
@@ -23,13 +23,7 @@
23
import textwrap
24
25
from bs4 import BeautifulSoup
26
-
27
28
29
30
31
32
33
34
__all__ = ["ExhaleRoot", "ExhaleNode"]
35
0 commit comments