mo processing test

This commit is contained in:
Piotr Dec 2025-11-02 23:50:24 +01:00
parent e14180cbe7
commit 9166790de9
Signed by: stawros
GPG key ID: 74B18A3F0F1E99C0
5 changed files with 31 additions and 3 deletions

View file

@ -36,8 +36,8 @@ class Passwords:
path = key_parts[:-2] if len(key_parts) > 2 else None
entry_name = key_parts[-2]
field_name = key_parts[-1]
kp_entry = self._kp_org.find_entries(path=path, first=True, name=entry_name)[0]
output[k] = kp_entry[field_name]
kp_entry = self._kp_org.find_entries(path=path, first=True, title=entry_name)[0]
output[k] = kp_entry[field_name] # TODO: TypeError: 'Entry' object is not subscriptable
return output
def save(self):