Remove uneeded override
This commit is contained in:
parent
58911a2da4
commit
3abc07eb39
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue