Skip to content

Commit

Permalink
Fixed: typo in switch.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ualex73 committed Dec 6, 2021
1 parent bb32468 commit 7071943
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion custom_components/monitor_docker/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ async def async_restart(parm):
clist = api.list_containers()

for cname in clist:
inludeContainer = False

includeContainer = False
if cname in config[CONF_CONTAINERS] or not config[CONF_CONTAINERS]:
includeContainer = True

Expand Down

0 comments on commit 7071943

Please sign in to comment.