This repository was archived by the owner on Aug 27, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed
custom_components/authenticated Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 1
- // See https://aka.ms/vscode-remote/devcontainer.json for format details.
2
1
{
3
2
"name" : " Custom integration authenticated" ,
4
- "image" : " ludeeus/devcontainer :integration" ,
3
+ "image" : " ludeeus/container :integration" ,
5
4
"context" : " .." ,
6
5
"appPort" : [
7
6
" 9123:8123"
8
7
],
9
- "postCreateCommand" : " dc install" ,
10
- "runArgs" : [
11
- " -v" ,
12
- " ${env:HOME}${env:USERPROFILE}/.ssh:/tmp/.ssh" // This is added so you can push from inside the container
13
- ],
8
+ "postCreateCommand" : " container install" ,
14
9
"extensions" : [
15
10
" ms-python.python" ,
16
11
" github.vscode-pull-request-github" ,
17
- " tabnine.tabnine-vscode"
18
- ],
19
- "settings" : {
12
+ " ryanluker.vscode-coverage-gutters" ,
13
+ " ms-python.vscode-pylance"
14
+ ],
15
+ "settings" : {
20
16
"files.eol" : " \n " ,
21
17
"editor.tabSize" : 4 ,
22
18
"terminal.integrated.shell.linux" : " /bin/bash" ,
28
24
"editor.formatOnSave" : true ,
29
25
"editor.formatOnType" : true ,
30
26
"files.trimTrailingWhitespace" : true
31
- }
27
+ }
32
28
}
Original file line number Diff line number Diff line change @@ -157,6 +157,8 @@ def update(self):
157
157
users , tokens = load_authentications (
158
158
self .hass .config .path (".storage/auth" ), self .exclude
159
159
)
160
+ _LOGGER .debug ("Users %s" , users )
161
+ _LOGGER .debug ("Access %s" , tokens )
160
162
for access in tokens :
161
163
try :
162
164
ValidateIP (access )
You can’t perform that action at this time.
0 commit comments