From c1ed1d85f038049305226728f92112d131f66af1 Mon Sep 17 00:00:00 2001 From: Giacomo Bertolazzi <31776951+Berack96@users.noreply.github.com> Date: Wed, 22 Oct 2025 17:16:42 +0200 Subject: [PATCH] Update src/app/api/wrapper_handler.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/app/api/wrapper_handler.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/api/wrapper_handler.py b/src/app/api/wrapper_handler.py index d5dfd92..0d30e63 100644 --- a/src/app/api/wrapper_handler.py +++ b/src/app/api/wrapper_handler.py @@ -160,8 +160,6 @@ class WrapperHandler(Generic[WrapperType]): result: list[WrapperClassType] = [] for wrapper_class in constructors: - if filters and wrapper_class.__name__ not in filters: - continue try: wrapper = wrapper_class(**(kwargs or {})) result.append(wrapper)