Skip to content

Commit

Permalink
Restore in const.py constants NAME and VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed Jul 2, 2024
1 parent 8c4ac31 commit 9dfb15e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions custom_components/integration_blueprint/const.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
"""Constants for integration_blueprint."""

from logging import Logger, getLogger
from typing import Final

LOGGER: Logger = getLogger(__package__)

DOMAIN = "integration_blueprint"
ATTRIBUTION = "Data provided by http://jsonplaceholder.typicode.com/"
ISSUE_URL = "https://github.com/Limych/ha-blueprint/issues"
NAME: Final = "Integration blueprint"
DOMAIN: Final = "integration_blueprint"
VERSION: Final = "0.0.0"
ATTRIBUTION: Final = "Data provided by http://jsonplaceholder.typicode.com/"
ISSUE_URL: Final = "https://github.com/Limych/ha-blueprint/issues"
4 changes: 2 additions & 2 deletions custom_components/integration_blueprint/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"domain": "integration_blueprint",
"name": "",
"name": "Integration blueprint",
"codeowners": [
"@Limych"
],
Expand All @@ -10,5 +10,5 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/Limych/ha-blueprint/issues",
"requirements": [],
"version": ""
"version": "0.0.0"
}
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "",
"name": "Integration blueprint",
"hide_default_branch": true,
"homeassistant": "2024.6.0",
"render_readme": true
Expand Down

0 comments on commit 9dfb15e

Please sign in to comment.