diff options
author | mathieui <mathieui@mathieui.net> | 2011-11-06 21:10:09 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-08 00:47:56 +0100 |
commit | 51364f7bea78f27820c67bf83a8e62ca593d61bb (patch) | |
tree | fd26f69fa343aef218637f9f3b46e2ed2b2abe0c /src/user.py | |
parent | 32a75fd5c746ba6080f43ef56be361deb2e3bad3 (diff) | |
download | poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.gz poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.bz2 poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.tar.xz poezio-51364f7bea78f27820c67bf83a8e62ca593d61bb.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 |