diff options
| author | Abhilash Raj | 2014-09-19 22:41:56 +0530 |
|---|---|---|
| committer | Abhilash Raj | 2014-09-19 22:41:56 +0530 |
| commit | c339f06cca6ddf1d28cde2614a94c2a0c905957a (patch) | |
| tree | 89682556800053817cb61f2a7b039f39dd7ddd39 /src/mailman/model/pending.py | |
| parent | 6dd2ac32ee1f1e8f588c08fd5363f0f794d0a6b1 (diff) | |
| download | mailman-c339f06cca6ddf1d28cde2614a94c2a0c905957a.tar.gz mailman-c339f06cca6ddf1d28cde2614a94c2a0c905957a.tar.zst mailman-c339f06cca6ddf1d28cde2614a94c2a0c905957a.zip | |
* remove some unused code
* add left out documentation
* remov super(<class>).__init__() calls in models
as it was useless now.
* remove schema_migrate func in mailman/database/base.py
Diffstat (limited to 'src/mailman/model/pending.py')
| -rw-r--r-- | src/mailman/model/pending.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mailman/model/pending.py b/src/mailman/model/pending.py index 30aae074c..97d394721 100644 --- a/src/mailman/model/pending.py +++ b/src/mailman/model/pending.py @@ -71,7 +71,6 @@ class Pended(Model): __tablename__ = 'pended' def __init__(self, token, expiration_date): - super(Pended, self).__init__() self.token = token self.expiration_date = expiration_date |
