Conform to Python formatting

Signed-off-by: coleramos425 <colramos@amd.com>
This commit is contained in:
coleramos425
2023-03-23 12:54:00 -05:00
والد a56bd24dbf
کامیت 644b20e308
2فایلهای تغییر یافته به همراه9 افزوده شده و 5 حذف شده
@@ -353,7 +353,12 @@ def build_table_chart(
}
if IS_DARK
else {},
style_data={"backgroundColor": "rgb(50, 50, 50)", "color": "white", "whiteSpace": "normal", "height": "auto"}
style_data={
"backgroundColor": "rgb(50, 50, 50)",
"color": "white",
"whiteSpace": "normal",
"height": "auto",
}
if IS_DARK
else {},
style_data_conditional=[
@@ -38,15 +38,14 @@ def list_unique(orig_list, is_numeric):
unique_list.sort()
return unique_list
def create_span(input):
elmt = {}
elmt["label"] = html.Span(
str(input),
title=str(input)
),
elmt["label"] = (html.Span(str(input), title=str(input)),)
elmt["value"] = str(input)
return elmt
def get_header(raw_pmc, input_filters, kernel_names):
return html.Header(
id="home",