mirror of
https://github.com/home-assistant/core.git
synced 2026-05-02 22:52:06 +01: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
@@ -103,8 +103,8 @@ async def test_setup_recovers_when_setup_raises(hass):
|
||||
OrderedDict(
|
||||
[
|
||||
(DOMAIN, {"platform": "mod1"}),
|
||||
("{} 2".format(DOMAIN), {"platform": "non_exist"}),
|
||||
("{} 3".format(DOMAIN), {"platform": "mod2"}),
|
||||
(f"{DOMAIN} 2", {"platform": "non_exist"}),
|
||||
(f"{DOMAIN} 3", {"platform": "mod2"}),
|
||||
]
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user