From 257910e52d12f8d2d2a816edd1a57f0f3084586b Mon Sep 17 00:00:00 2001 From: Maciej Borzecki Date: Tue, 6 Feb 2024 14:03:29 +0100 Subject: [PATCH] console_conf/models: drop key fingerprints The fingerprints are not used anywhere, no point in keeping the field. Signed-off-by: Maciej Borzecki --- console_conf/models/identity.py | 1 - 1 file changed, 1 deletion(-) diff --git a/console_conf/models/identity.py b/console_conf/models/identity.py index ac53a00c..011de62e 100644 --- a/console_conf/models/identity.py +++ b/console_conf/models/identity.py @@ -25,7 +25,6 @@ class User(object): realname = attr.ib() username = attr.ib() homedir = attr.ib(default=None) - fingerprints = attr.ib(init=False, default=[]) class IdentityModel(object):