Skip to content

Commit

Permalink
Add documentation requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
parttimenerd committed Mar 28, 2016
1 parent c6f6900 commit 49b6843
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sphinx-autodoc-typehints
6 changes: 3 additions & 3 deletions temci/report/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ def report(self):
</div>
</div>
</div>
{self.app_html}
{self._app_html}
<script>
$(function () {{
$('[data-toggle="popover"]').popover({{"content": function(){{
Expand Down Expand Up @@ -1684,7 +1684,7 @@ def _color_class(obj: BaseStatObject) -> str:


def _color_explanation(obj: BaseStatObject) -> str:
_color_class = "div_" + _color_class(obj)
color_class = "div_" + _color_class(obj)
msg = ""
if obj.has_errors():
msg = "This color means that the corresponding data set is erroneous " \
Expand All @@ -1699,7 +1699,7 @@ def _color_explanation(obj: BaseStatObject) -> str:
msg = "Everything seems to be okay."
if msg != "":
return """
<p class='{_color_class}'>
<p class='{color_class}'>
{msg}
</p>
""".format(**locals())
Expand Down

0 comments on commit 49b6843

Please sign in to comment.