diff --git a/custom_components/nexxtmove/const.py b/custom_components/nexxtmove/const.py index 80415ff..58b1cfc 100644 --- a/custom_components/nexxtmove/const.py +++ b/custom_components/nexxtmove/const.py @@ -45,14 +45,12 @@ NAME = manifest_data.get("name") VERSION = manifest_data.get("version") ISSUEURL = manifest_data.get("issue_tracker") -STARTUP = """ +STARTUP = f""" ------------------------------------------------------------------- -{name} -Version: {version} +{NAME} +Version: {VERSION} This is a custom component If you have any issues with this you need to open an issue here: -{issueurl} +{ISSUEURL} ------------------------------------------------------------------- -""".format( - name=NAME, version=VERSION, issueurl=ISSUEURL -) +"""