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

Disable too-many-* (#4107)

* Disable too-many-* and too-few-public-methods

* Remove globally disabled pylint warnings
This commit is contained in:
Fabian Affolter
2016-10-30 22:18:53 +01:00
committed by GitHub
parent b910a9917d
commit be272ac64a
298 changed files with 271 additions and 570 deletions

View File

@@ -203,7 +203,6 @@ def async_track_sunset(hass, action, offset=None):
track_sunset = threaded_listener_factory(async_track_sunset)
# pylint: disable=too-many-arguments
def async_track_utc_time_change(hass, action, year=None, month=None, day=None,
hour=None, minute=None, second=None,
local=False):
@@ -248,7 +247,6 @@ def async_track_utc_time_change(hass, action, year=None, month=None, day=None,
track_utc_time_change = threaded_listener_factory(async_track_utc_time_change)
# pylint: disable=too-many-arguments
def async_track_time_change(hass, action, year=None, month=None, day=None,
hour=None, minute=None, second=None):
"""Add a listener that will fire if UTC time matches a pattern."""