1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Bugfix/frontend group urls (#4185)

* Remove unnecessary sleeps

* Frontend: fix serving index when refreshing view page.
This commit is contained in:
Paulus Schoutsen
2016-11-02 21:15:23 -07:00
committed by GitHub
parent a3ae96440b
commit 1d100dcac9
9 changed files with 22 additions and 25 deletions

View File

@@ -2,7 +2,6 @@
# pylint: disable=protected-access
import asyncio
import threading
import time
import unittest
from unittest.mock import patch
@@ -51,7 +50,6 @@ def setUpModule():
bootstrap.setup_component(hass, 'api')
hass.start()
time.sleep(0.05)
master_api = remote.API('127.0.0.1', API_PASSWORD, MASTER_PORT)