From b05f2e32218ee14312443b85b6274918ee0820f8 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 11 Oct 2015 11:04:16 -0700 Subject: [PATCH] Fix style issue --- homeassistant/util/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/util/__init__.py b/homeassistant/util/__init__.py index ec693f312f3..ada6d150188 100644 --- a/homeassistant/util/__init__.py +++ b/homeassistant/util/__init__.py @@ -255,6 +255,7 @@ class Throttle(object): Wrapper that allows wrapped to be called only once per min_time. If we cannot acquire the lock, it is running so return None. """ + # pylint: disable=protected-access if hasattr(method, '__self__'): host = method.__self__ elif is_func: