From a49a824a0a6423ebfd0b8c3d8712fd08dad58250 Mon Sep 17 00:00:00 2001 From: Samuel Moors Date: Thu, 29 Jan 2026 10:20:42 +0100 Subject: [PATCH] don't check export variables in function --- tools/filter.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/filter.py b/tools/filter.py index 54e0f5e3..4bd44a2b 100644 --- a/tools/filter.py +++ b/tools/filter.py @@ -303,6 +303,9 @@ def check_filters(self, context): else: check = False break + # Skip export variables: they are not action filters + elif af.component == FILTER_COMPONENT_EXPORT: + continue # Action filter wasn't found in the context, we won't allow this else: check = False