Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
JimFuller-RedHat committed Jan 20, 2024
1 parent 6449132 commit 4a801ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions griffon/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ def text_output_products_contain_component(
for source_component_name in source_component_names:
console.print(
Text(pv, style=f"{product_color} b"),
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]",
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]", # noqa
no_wrap=no_wrap,
)
if not (result_tree[pv][ps][cn][nvr]["upstreams"]) and not (
Expand Down Expand Up @@ -621,7 +621,7 @@ def text_output_products_contain_component(
source_component_name = f"[bright_yellow]{source_component_names[0]} and {len(source_component_names) - 1} more[/bright_yellow]" # noqa
console.print(
Text(ps, style=f"{product_color} b"),
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]",
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]", # noqa
f"[{dep}]",
no_wrap=no_wrap,
)
Expand Down Expand Up @@ -755,7 +755,7 @@ def text_output_products_contain_component(
source_component_name = f"[red]{source_component_names[0]} and {len(source_component_names) - 1} more[/red]" # noqa
console.print(
Text(ps, style=f"{product_color} b"),
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]",
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]", # noqa
f"[{dep}]",
f"[grey]{related_url}[/grey]",
no_wrap=no_wrap,
Expand Down Expand Up @@ -865,7 +865,7 @@ def text_output_products_contain_component(
source_component_name = f"[red]{source_component_names[0]} and {len(source_component_names) - 1} more[/red]" # noqa
console.print(
Text(ps, style=f"{product_color} b"),
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]",
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]", # noqa
f"[{dep}]",
f"[grey]{related_url}[/grey]",
no_wrap=no_wrap,
Expand Down Expand Up @@ -974,7 +974,7 @@ def text_output_products_contain_component(
source_component_name = f"{source_component_names[0]} and {len(source_component_names) - 1} more" # noqa
console.print(
Text(ps, style=f"{product_color} b u"),
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]",
f"[pale_turquoise1]{source_component_name}[/pale_turquoise1]", # noqa
f"[{dep}]",
f"[grey]{related_url}[/grey]",
f"[grey]{build_source_url}[/grey]",
Expand Down

0 comments on commit 4a801ba

Please sign in to comment.