From 2bb74b1e7805d560f3ee79573a6d25e7bde0f269 Mon Sep 17 00:00:00 2001 From: berjaoui Date: Mon, 2 Sep 2024 14:17:45 +0200 Subject: [PATCH] Update home_assistant_filter.py Corrected requirements for difflib (typo "difflab") --- examples/filters/home_assistant_filter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/filters/home_assistant_filter.py b/examples/filters/home_assistant_filter.py index 6cf364ad..a86ed9f2 100644 --- a/examples/filters/home_assistant_filter.py +++ b/examples/filters/home_assistant_filter.py @@ -5,7 +5,7 @@ version: 1.0 license: MIT description: A pipeline for controlling Home Assistant entities based on their easy names. Only supports lights at the moment. -requirements: pytz, difflab +requirements: pytz, difflib """ import requests from typing import Literal, Dict, Any @@ -113,4 +113,4 @@ def __init__(self): "pipelines": ["*"], # Connect to all pipelines }, ) - self.tools = self.Tools(self) \ No newline at end of file + self.tools = self.Tools(self)