From 13bbeef5bf6ce62b88aee7df06064100cdc197c9 Mon Sep 17 00:00:00 2001 From: tcely Date: Fri, 14 Feb 2025 18:56:44 -0500 Subject: [PATCH] Add a comment about disallowing True => False --- tubesync/sync/filtering.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tubesync/sync/filtering.py b/tubesync/sync/filtering.py index ff3ff6c2..21947c9f 100644 --- a/tubesync/sync/filtering.py +++ b/tubesync/sync/filtering.py @@ -41,6 +41,7 @@ def filter_media(instance: Media): # Check if skipping if instance.skip != skip: + # only allow; False => True changes instance.skip = instance.skip or skip log.info( f"Media: {instance.source} / {instance} has changed skip setting to {instance.skip}"