diff options
author | mathieui <mathieui@mathieui.net> | 2014-03-19 02:22:25 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2014-03-19 02:22:25 +0100 |
commit | 1c621caae1204ec9a59b38a326c13bfe04be168c (patch) | |
tree | e69dc839d0fcfa39a8704e1fdbf3d7ca7df3cb26 /src/tabs/__init__.py | |
parent | be74128cb78ebd9c8316816f04632acd12396579 (diff) | |
download | poezio-1c621caae1204ec9a59b38a326c13bfe04be168c.tar.gz poezio-1c621caae1204ec9a59b38a326c13bfe04be168c.tar.bz2 poezio-1c621caae1204ec9a59b38a326c13bfe04be168c.tar.xz poezio-1c621caae1204ec9a59b38a326c13bfe04be168c.zip |
split the "tabs" module into separate files
- todo: write a common import file to avoid duplicating the imports
Diffstat (limited to 'src/tabs/__init__.py')
-rw-r--r-- | src/tabs/__init__.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tabs/__init__.py b/src/tabs/__init__.py new file mode 100644 index 00000000..1100db09 --- /dev/null +++ b/src/tabs/__init__.py @@ -0,0 +1,8 @@ +from . basetabs import Tab, ChatTab, GapTab, STATE_PRIORITY +from . rostertab import RosterInfoTab +from . muctab import MucTab +from . privatetab import PrivateTab +from . conversationtab import ConversationTab, StaticConversationTab,\ + DynamicConversationTab +from . xmltab import XMLTab +from . muclisttab import MucListTab |