Change to use super() instead of the old py2 style everywhere

This commit is contained in:
Griatch 2022-01-26 21:45:28 +01:00
parent 55237f20a7
commit 5859de7054
33 changed files with 69 additions and 70 deletions

View file

@ -664,7 +664,7 @@ class DefaultAccount(AccountDB, metaclass=TypeclassBase):
could get invalidated.
"""
super(DefaultAccount, self).set_password(password)
super().set_password(password)
logger.log_sec(f"Password successfully changed for {self}.")
self.at_password_change()