mirror of
https://github.com/home-assistant/core.git
synced 2025-07-30 18:58:04 +02:00
Various string cleanups (#30435)
* Remove some unnecessary string concatenations * Replace some simple str.formats with f-strings * Replace some string concatenations with f-strings
This commit is contained in:
committed by
Paulus Schoutsen
parent
5ad209c6fd
commit
fa4fa30461
@ -43,7 +43,7 @@ def color(the_color, *args, reset=None):
|
||||
return parse_colors(the_color)
|
||||
return parse_colors(the_color) + " ".join(args) + escape_codes[reset or "reset"]
|
||||
except KeyError as k:
|
||||
raise ValueError("Invalid color {} in {}".format(str(k), the_color))
|
||||
raise ValueError(f"Invalid color {k!s} in {the_color}")
|
||||
|
||||
|
||||
def run(script_args: List) -> int:
|
||||
|
Reference in New Issue
Block a user