Updated HACS - Updated Secrets file to remove entries.
This commit is contained in:
parent
b697a2e9f8
commit
b65043a531
|
@ -1,7 +1,7 @@
|
|||
"""Constants for HACS"""
|
||||
NAME_LONG = "HACS (Home Assistant Community Store)"
|
||||
NAME_SHORT = "HACS"
|
||||
VERSION = "1.0.0"
|
||||
VERSION = "1.0.1"
|
||||
DOMAIN = "hacs"
|
||||
PROJECT_URL = "https://github.com/hacs/integration/"
|
||||
CUSTOM_UPDATER_LOCATIONS = [
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
"aiofiles==0.5.0",
|
||||
"aiogithubapi==1.0.4",
|
||||
"backoff==1.10.0",
|
||||
"hacs_frontend==20200521162326",
|
||||
"hacs_frontend==20200522122100",
|
||||
"integrationhelper==0.2.2",
|
||||
"semantic_version==2.8.5",
|
||||
"queueman==0.5"
|
||||
|
|
|
@ -73,6 +73,8 @@ class RepositoryData:
|
|||
for key in source:
|
||||
if key in data.__dict__:
|
||||
if key == "pushed_at":
|
||||
if source[key] == "":
|
||||
continue
|
||||
if "Z" in source[key]:
|
||||
setattr(
|
||||
data,
|
||||
|
@ -101,6 +103,8 @@ class RepositoryData:
|
|||
for key in data:
|
||||
if key in self.__dict__:
|
||||
if key == "pushed_at":
|
||||
if data[key] == "":
|
||||
continue
|
||||
if "Z" in data[key]:
|
||||
setattr(
|
||||
self,
|
||||
|
|
|
@ -29,8 +29,6 @@ nest_client_id: secret_nest_client_id
|
|||
nest_client_secret: secretnestclientid
|
||||
august_username: user@email.com
|
||||
august_password: P@ssw0rd!
|
||||
neato_username: user@email.com
|
||||
neato_password: password
|
||||
mychevy_email: user@email.com
|
||||
mychevy_password: password
|
||||
large_garage_id: 00000000000000000000000
|
||||
|
@ -62,8 +60,6 @@ rachio_api: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|||
skybell_username: user@email.com
|
||||
skybell_password: password
|
||||
travis_api: THISisTheMostSecureAPIKeyEva
|
||||
tuya_username: username@me.com
|
||||
tuya_password: vCloudInfoPassword
|
||||
twitter_consumer_key: LotsOfNumbers
|
||||
twitter_consumer_secret: LotsOfLetters
|
||||
twitter_access_token: Access-to-BearStoneHA
|
||||
|
|
Loading…
Reference in New Issue