Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/activity.py
diff options
context:
space:
mode:
authorflavio <fdanesse@gmail.com>2012-06-22 12:26:12 (GMT)
committer flavio <fdanesse@gmail.com>2012-06-22 12:26:12 (GMT)
commit015c5587d2a65e76eed686445bcc4e99504052ca (patch)
tree39cb9cbcbb9af740175a90919a5788b330a91cca /activity.py
parent83bbc998b798c05f76f8990ae5d997e1457f56c8 (diff)
Having all imports in one line
Diffstat (limited to 'activity.py')
-rw-r--r--activity.py25
1 files changed, 15 insertions, 10 deletions
diff --git a/activity.py b/activity.py
index 6c82cb7..7fa835c 100644
--- a/activity.py
+++ b/activity.py
@@ -14,19 +14,21 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-from gi.repository import Gtk, Gdk
+from gi.repository import Gtk
+from gi.repository import Gdk
import logging
import cjson
import math
from gettext import gettext as _
-from telepathy.interfaces import (
- CHANNEL_INTERFACE, CHANNEL_INTERFACE_GROUP, CHANNEL_TYPE_TEXT,
- CONN_INTERFACE_ALIASING)
-from telepathy.constants import (
- CHANNEL_GROUP_FLAG_CHANNEL_SPECIFIC_HANDLES,
- CHANNEL_TEXT_MESSAGE_TYPE_NORMAL)
-from telepathy.client import Connection, Channel
+from telepathy.interfaces import CHANNEL_INTERFACE
+from telepathy.interfaces import CHANNEL_INTERFACE_GROUP
+from telepathy.interfaces import CHANNEL_TYPE_TEXT
+from telepathy.interfaces import CONN_INTERFACE_ALIASING
+from telepathy.constants import CHANNEL_GROUP_FLAG_CHANNEL_SPECIFIC_HANDLES
+from telepathy.constants import CHANNEL_TEXT_MESSAGE_TYPE_NORMAL
+from telepathy.client import Connection
+from telepathy.client import Channel
from sugar3.graphics import style
from sugar3.graphics.alert import NotifyAlert
@@ -34,8 +36,11 @@ from sugar3.graphics.palette import Palette
from sugar3.graphics.toolbarbox import ToolbarBox
from sugar3.activity import activity
from sugar3.presence import presenceservice
-from sugar3.activity.widgets import ActivityButton, TitleEntry
-from sugar3.activity.widgets import StopButton, ShareButton, RadioMenuButton
+from sugar3.activity.widgets import ActivityButton
+from sugar3.activity.widgets import TitleEntry
+from sugar3.activity.widgets import StopButton
+from sugar3.activity.widgets import ShareButton
+from sugar3.activity.widgets import RadioMenuButton
from chat import smilies
from chat.box import ChatBox