From 25586a35aa33c162e4595e3ea87002b5e79df19a Mon Sep 17 00:00:00 2001 From: chadmando Date: Wed, 2 Jul 2025 22:00:59 -0500 Subject: [PATCH] fix typo Update demo_delete_duplicate_sensors.py line 2, detelete -> delete --- samples/demo_delete_duplicate_sensors.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/demo_delete_duplicate_sensors.py b/samples/demo_delete_duplicate_sensors.py index 6c42fc3..24b9937 100644 --- a/samples/demo_delete_duplicate_sensors.py +++ b/samples/demo_delete_duplicate_sensors.py @@ -1,5 +1,5 @@ # Sometimes a sensor can be installed on the same host a few times by mistake. -# This script looks for sensors with the same host name. When found, detelete +# This script looks for sensors with the same host name. When found, delete # the oldest sensor. import limacharlie @@ -63,4 +63,4 @@ def _getSensorInfo( s ): if not args.isDryRun: lc.sensor( sensor[ 'sid' ] ).delete() - print( "Done." ) \ No newline at end of file + print( "Done." )