Skip to content

Commit 0c5141a

Browse files
author
Thomas Preud'homme
committed
Fix bracket indentation in report.py
Fix Flake8's E123 error (closing bracket does not match indentation of opening bracket's line) and reindent bracket's body Reviewed By: tnfchris Differential Revision: https://reviews.llvm.org/D94797
1 parent 29b8a80 commit 0c5141a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

lnt/server/reporting/report.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ def complete(self):
125125
# These are derived from the static style.css file we use elsewhere.
126126

127127
report_css_styles = {
128-
"body": ("color:#000000; background-color:#ffffff; "
129-
"font-family: Helvetica, sans-serif; font-size:9pt"),
130-
"table": ("font-size:9pt; border-spacing: 0px; "
131-
"border: 1px solid black"),
132-
"th": (
133-
"background-color:#eee; color:#666666; font-weight: bold; "
134-
"cursor: default; text-align:center; font-weight: bold; "
135-
"font-family: Verdana; padding:5px; padding-left:8px"),
136-
"td": "padding:5px; padding-left:8px",
137-
"right": "text-align: right;"
138-
}
128+
"body": ("color:#000000; background-color:#ffffff; "
129+
"font-family: Helvetica, sans-serif; font-size:9pt"),
130+
"table": ("font-size:9pt; border-spacing: 0px; "
131+
"border: 1px solid black"),
132+
"th": (
133+
"background-color:#eee; color:#666666; font-weight: bold; "
134+
"cursor: default; text-align:center; font-weight: bold; "
135+
"font-family: Verdana; padding:5px; padding-left:8px"),
136+
"td": "padding:5px; padding-left:8px",
137+
"right": "text-align: right;"
138+
}

0 commit comments

Comments
 (0)