diff options
author | mathieui <mathieui@mathieui.net> | 2014-04-04 00:24:16 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-04-04 00:24:16 +0200 |
commit | ca0950db07ff5006ba760e829f2fa6a7c2f8ea41 (patch) | |
tree | 3a523563304626f03f29334a53d758006252d5f8 /src/windows.py | |
parent | b6d607075160dffea769c6ad49e4303e48722ed4 (diff) | |
download | poezio-ca0950db07ff5006ba760e829f2fa6a7c2f8ea41.tar.gz poezio-ca0950db07ff5006ba760e829f2fa6a7c2f8ea41.tar.bz2 poezio-ca0950db07ff5006ba760e829f2fa6a7c2f8ea41.tar.xz poezio-ca0950db07ff5006ba760e829f2fa6a7c2f8ea41.zip |
Remove unused imports
(thanks eijebong)
Diffstat (limited to 'src/windows.py')
-rw-r--r-- | src/windows.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/windows.py b/src/windows.py index fd66d475..60871821 100644 --- a/src/windows.py +++ b/src/windows.py @@ -12,8 +12,6 @@ the text window, the roster window, etc. A Tab (see tab.py) is composed of multiple Windows """ -from gettext import (bindtextdomain, textdomain, bind_textdomain_codeset, - gettext as _) import logging log = logging.getLogger(__name__) @@ -30,7 +28,6 @@ from contact import Contact, Resource from roster import RosterGroup import poopt -from sleekxmpp import JID from common import safeJID import common @@ -38,7 +35,7 @@ import core import singleton import collections -from theming import get_theme, to_curses_attr, read_tuple, dump_tuple +from theming import get_theme, to_curses_attr, read_tuple FORMAT_CHAR = '\x19' # These are non-printable chars, so they should never appear in the input, I |