device: avoid hids duplication

This commit is contained in:
pedro 2024-09-26 00:10:48 -03:00
parent 59f6ac705c
commit 58c0e9059a
1 changed files with 2 additions and 2 deletions

View File

@ -89,10 +89,10 @@ class Device:
def get_hids(self):
annotations = self.get_annotations()
self.hids = annotations.filter(
self.hids = list(set(annotations.filter(
type=Annotation.Type.SYSTEM,
key__in=ALGOS.keys(),
).values_list("value", flat=True)
).values_list("value", flat=True)))
def get_evidences(self):
if not self.uuids: