From 53ff122a005db1d9b8e99a0df52252c3e7e1c294 Mon Sep 17 00:00:00 2001 From: Juan <43722131+JuanTecedor@users.noreply.github.com> Date: Mon, 6 Jan 2025 23:15:49 +0100 Subject: [PATCH] Add Has to query __init__ --- thehive4py/query/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thehive4py/query/__init__.py b/thehive4py/query/__init__.py index 664ed45..34d2e01 100644 --- a/thehive4py/query/__init__.py +++ b/thehive4py/query/__init__.py @@ -2,7 +2,7 @@ from .filters import Between, Contains, EndsWith, Eq from .filters import FilterExpr as _FilterExpr -from .filters import Gt, Gte, Id, In, Like, Lt, Lte, Match, Ne, StartsWith +from .filters import Gt, Gte, Has, Id, In, Like, Lt, Lte, Match, Ne, StartsWith from .page import Paginate from .sort import Asc, Desc from .sort import SortExpr as _SortExpr