mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 14:17:45 +00:00
Comment out pyuserinput in requirements_all (#3307)
* Comment out pyuserinput in requirements_all * Ignore import error for keyboard component
This commit is contained in:
parent
360a650370
commit
fa4b253871
@ -50,6 +50,7 @@ def media_prev_track(hass):
|
|||||||
|
|
||||||
def setup(hass, config):
|
def setup(hass, config):
|
||||||
"""Listen for keyboard events."""
|
"""Listen for keyboard events."""
|
||||||
|
# pylint: disable=import-error
|
||||||
import pykeyboard
|
import pykeyboard
|
||||||
|
|
||||||
keyboard = pykeyboard.PyKeyboard()
|
keyboard = pykeyboard.PyKeyboard()
|
||||||
|
@ -397,7 +397,7 @@ python-twitch==1.3.0
|
|||||||
python-wink==0.7.14
|
python-wink==0.7.14
|
||||||
|
|
||||||
# homeassistant.components.keyboard
|
# homeassistant.components.keyboard
|
||||||
pyuserinput==0.1.11
|
# pyuserinput==0.1.11
|
||||||
|
|
||||||
# homeassistant.components.vera
|
# homeassistant.components.vera
|
||||||
pyvera==0.2.15
|
pyvera==0.2.15
|
||||||
|
@ -14,7 +14,8 @@ COMMENT_REQUIREMENTS = (
|
|||||||
'pybluez',
|
'pybluez',
|
||||||
'bluepy',
|
'bluepy',
|
||||||
'python-lirc',
|
'python-lirc',
|
||||||
'gattlib'
|
'gattlib',
|
||||||
|
'pyuserinput',
|
||||||
)
|
)
|
||||||
|
|
||||||
IGNORE_PACKAGES = (
|
IGNORE_PACKAGES = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user