forked from platypush/platypush
Increased default poll_interval
for system
plugin to 60 seconds.
This commit is contained in:
parent
a72c32cb00
commit
763d9e06ec
1 changed files with 2 additions and 2 deletions
|
@ -71,8 +71,8 @@ class SystemPlugin(SensorPlugin, EntityManager):
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, poll_interval: Optional[float] = 60, **kwargs):
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, poll_interval=poll_interval, **kwargs)
|
||||||
self.__cpu_info: Optional[CpuInfo] = None
|
self.__cpu_info: Optional[CpuInfo] = None
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
Loading…
Reference in a new issue