From 3abc07eb3929dbe3d1394517f8597c7913f5c321 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Thu, 16 Jan 2020 23:53:55 -0800 Subject: [PATCH] Remove uneeded override --- amanuensis/user.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/amanuensis/user.py b/amanuensis/user.py index 7b7b421..208d76a 100644 --- a/amanuensis/user.py +++ b/amanuensis/user.py @@ -25,9 +25,6 @@ class User(UserMixin): raise AttributeError(key) return self.config.get(key) - def get_id(self): - return self.uid - def set_password(self, pw): h = generate_password_hash(pw) with config.json_rw(self.config_path) as j: