File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 13
13
DOCS_HTML_TEMPLATE = """{% extends "docs.html" %}
14
14
{% block title %}<title><TITLE></title>{% endblock %}
15
15
{% block content %}<CONTENT>{% endblock %}
16
- """
16
+ """ # noqa
17
17
18
18
CHANGELOG_HTML_TEMPLATE = """{% extends "changelog.html" %}
19
19
{% block title %}<title><TITLE></title>{% endblock %}
20
20
{% block content %}<CONTENT>{% endblock %}
21
- """
21
+ """ # noqa
22
22
23
23
TAB_OUTER_TEMPLATE = """<div class="card mb-3">
24
24
<div class="card-header">
25
25
<ul class="nav nav-tabs card-header-tabs{classes}"{id_value} role="tablist">{tabs}</ul>
26
26
</div>
27
27
<div class="card-body tab-content">{tab_panes}</div>
28
28
</div>
29
- """
29
+ """ # noqa
30
30
31
31
TAB_TEMPLATE = """<li class="nav-item" role="presentation">
32
32
<a class="nav-link{2}" id="{0}-tab" data-toggle="tab" href="#{0}" role="tab" aria-controls="{0}" aria-selected="{3}">{1}</a>
33
33
</li>
34
- """
34
+ """ # noqa
35
35
36
- TAB_PANE_TEMPLATE = """<div class="tab-pane fade show{2}" id="{0}" role="tabpanel" aria-labelledby="{0}-tab">{1}</div>"""
36
+ TAB_PANE_TEMPLATE = """<div class="tab-pane fade show{2}" id="{0}" role="tabpanel" aria-labelledby="{0}-tab">{1}</div>""" # noqa
37
37
38
38
TAB_COUNT = 0
39
39
You can’t perform that action at this time.
0 commit comments