summaryrefslogtreecommitdiff
path: root/src/sound_bot.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound_bot.py')
-rwxr-xr-xsrc/sound_bot.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sound_bot.py b/src/sound_bot.py
index 32371bd..bc9edce 100755
--- a/src/sound_bot.py
+++ b/src/sound_bot.py
@@ -9,7 +9,7 @@ from html import escape
from typing import Optional, List, Dict, Tuple
from home.config import config
-from home.api import WebAPIClient
+from home.api import WebApiClient
from home.api.types import SoundSensorLocation, BotType
from home.api.errors import ApiResponseError
from home.media import SoundNodeClient, SoundRecordClient, SoundRecordFile, CameraNodeClient
@@ -734,7 +734,7 @@ def sound_sensors_last_24h(ctx: bot.Context):
ctx.answer()
- cl = WebAPIClient()
+ cl = WebApiClient()
data = cl.get_sound_sensor_hits(location=SoundSensorLocation[node.upper()],
after=datetime.now() - timedelta(hours=24))
@@ -757,7 +757,7 @@ def sound_sensors_last_anything(ctx: bot.Context):
ctx.answer()
- cl = WebAPIClient()
+ cl = WebApiClient()
data = cl.get_last_sound_sensor_hits(location=SoundSensorLocation[node.upper()],
last=20)