Remove uneeded override

This commit is contained in:
Tim Van Baak 2020-01-16 23:53:55 -08:00
parent 58911a2da4
commit 3abc07eb39
1 changed files with 0 additions and 3 deletions

View File

@ -25,9 +25,6 @@ class User(UserMixin):
raise AttributeError(key) raise AttributeError(key)
return self.config.get(key) return self.config.get(key)
def get_id(self):
return self.uid
def set_password(self, pw): def set_password(self, pw):
h = generate_password_hash(pw) h = generate_password_hash(pw)
with config.json_rw(self.config_path) as j: with config.json_rw(self.config_path) as j: