diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-06 21:10:09 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2011-11-06 21:10:09 +0100 |
commit | c3c67b5e0afec8b322b8f08aa76b8e35c24bc23b (patch) | |
tree | fdc82387aafafb2220411ebd631ef10844499b0a /src/user.py | |
parent | 0315b05f5122f1f4697699fc09de1b0860203177 (diff) | |
download | poezio-c3c67b5e0afec8b322b8f08aa76b8e35c24bc23b.tar.gz poezio-c3c67b5e0afec8b322b8f08aa76b8e35c24bc23b.tar.bz2 poezio-c3c67b5e0afec8b322b8f08aa76b8e35c24bc23b.tar.xz poezio-c3c67b5e0afec8b322b8f08aa76b8e35c24bc23b.zip |
Code cleanup (unused import, variables, undefined names, etc…)
Diffstat (limited to 'src/user.py')
-rw-r--r-- | src/user.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/user.py b/src/user.py index 5867e1f3..0d29569f 100644 --- a/src/user.py +++ b/src/user.py @@ -10,10 +10,7 @@ Define the user class. An user is a MUC participant, not a roster contact (see contact.py) """ -import curses - -from random import randrange, choice -from config import config +from random import choice from datetime import timedelta, datetime from theming import get_theme |