Conform to Python formatting
Signed-off-by: coleramos425 <colramos@amd.com>
This commit is contained in:
@@ -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",
|
||||
|
||||
مرجع در شماره جدید
Block a user