diff options
| author | Barry Warsaw | 2010-10-08 17:17:34 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2010-10-08 17:17:34 -0400 |
| commit | 90814a40b82e559ebfa999df2121ba2e8e32500f (patch) | |
| tree | 072fe79321581fde129cc87e9656da855a42b270 /src/mailman/model/preferences.py | |
| parent | 3643347f1c8548bc903e4a95a48a926cd07d307d (diff) | |
| download | mailman-90814a40b82e559ebfa999df2121ba2e8e32500f.tar.gz mailman-90814a40b82e559ebfa999df2121ba2e8e32500f.tar.zst mailman-90814a40b82e559ebfa999df2121ba2e8e32500f.zip | |
Fix the obvious errors identified by pyflakes. Skip false positives (mostly
due to _() interpolation) and a few other problems that did not have
immediately obvious fixes.
Diffstat (limited to '')
| -rw-r--r-- | src/mailman/model/preferences.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mailman/model/preferences.py b/src/mailman/model/preferences.py index a5064957d..a42278105 100644 --- a/src/mailman/model/preferences.py +++ b/src/mailman/model/preferences.py @@ -25,11 +25,10 @@ __all__ = [ ] -from storm.locals import * +from storm.locals import Bool, Int, Unicode from zope.component import getUtility from zope.interface import implements -from mailman.config import config from mailman.database.model import Model from mailman.database.types import Enum from mailman.interfaces.languages import ILanguageManager |
