From b0dd043975b663f8d6574f3287442f9449717f09 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Mon, 2 Sep 2019 15:45:31 +0200 Subject: [PATCH] Fix typing warning / hardware (#1277) --- hassio/misc/hardware.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hassio/misc/hardware.py b/hassio/misc/hardware.py index 9ec283c6e..800669650 100644 --- a/hassio/misc/hardware.py +++ b/hassio/misc/hardware.py @@ -159,5 +159,5 @@ class Hardware: if proc.returncode == 0: return - _LOGGER.waring("udevadm device triggering fails!") + _LOGGER.warning("udevadm device triggering fails!") raise HardwareNotSupportedError()