WIP: rework/properties #31

Draft
rskthomas wants to merge 19 commits from rework/properties into main
1 changed files with 2 additions and 2 deletions
Showing only changes of commit b7d7b9041d - Show all commits

View File

@ -95,11 +95,11 @@ class Device:
key__in=algos,
).values_list("value", flat=True)))
def get_properties(self):
def get_evidences(self):
if not self.uuids:
self.get_uuids()
self.properties = [SystemProperty(u) for u in self.uuids]
self.evidences = [Evidence(u) for u in self.uuids]
def get_last_evidence(self):
properties = self.get_properties()