try to make pylint happy
All checks were successful
buildbot/tox Build done.

This commit is contained in:
2022-06-08 00:08:09 +02:00
parent 8610e2a557
commit 98a6fc3ce7
60 changed files with 565 additions and 560 deletions

View File

@@ -182,7 +182,7 @@ Anmerkung:
self.purge_at = self.__class__.calc_purge_at(self.event)
self.full_clean()
super(Registration, self).save(**kwargs)
super().save(**kwargs)
if creating:
status = RegistrationStatus(registration=self)
@@ -238,7 +238,7 @@ class RegistrationStatus(models.Model):
def save(self, **kwargs):
self.full_clean()
super(RegistrationStatus, self).save(**kwargs)
super().save(**kwargs)
def set_accepted(self):
self.accepted = True