Skip to content

Commit 9dfb15e

Browse files
committed
Restore in const.py constants NAME and VERSION
1 parent 8c4ac31 commit 9dfb15e

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
"""Constants for integration_blueprint."""
22

33
from logging import Logger, getLogger
4+
from typing import Final
45

56
LOGGER: Logger = getLogger(__package__)
67

7-
DOMAIN = "integration_blueprint"
8-
ATTRIBUTION = "Data provided by http://jsonplaceholder.typicode.com/"
9-
ISSUE_URL = "https://github.com/Limych/ha-blueprint/issues"
8+
NAME: Final = "Integration blueprint"
9+
DOMAIN: Final = "integration_blueprint"
10+
VERSION: Final = "0.0.0"
11+
ATTRIBUTION: Final = "Data provided by http://jsonplaceholder.typicode.com/"
12+
ISSUE_URL: Final = "https://github.com/Limych/ha-blueprint/issues"
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"domain": "integration_blueprint",
3-
"name": "",
3+
"name": "Integration blueprint",
44
"codeowners": [
55
"@Limych"
66
],
@@ -10,5 +10,5 @@
1010
"iot_class": "cloud_polling",
1111
"issue_tracker": "https://github.com/Limych/ha-blueprint/issues",
1212
"requirements": [],
13-
"version": ""
13+
"version": "0.0.0"
1414
}

hacs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "",
2+
"name": "Integration blueprint",
33
"hide_default_branch": true,
44
"homeassistant": "2024.6.0",
55
"render_readme": true

0 commit comments

Comments
 (0)