Seperate check_skip_logic, append reasons

This commit is contained in:
Luigi311
2023-01-27 13:47:24 -07:00
parent 03de3affd7
commit 1f16fcb8eb
2 changed files with 56 additions and 23 deletions

View File

@@ -138,10 +138,10 @@ def cleanup_watched(
return modified_watched_list_1
def get_other(watched_list_2, object_1, object_2):
if object_1 in watched_list_2:
def get_other(watched_list, object_1, object_2):
if object_1 in watched_list:
return object_1
elif object_2 in watched_list_2:
elif object_2 in watched_list:
return object_2
else:
logger(f"{object_1} and {object_2} not found in watched list 2", 1)