[hamster-applet] cleaned up imports



commit 98b095c166c3a67b35387d7e8ed75f69c7adc351
Author: Toms Bauģis <toms baugis gmail com>
Date:   Sat Dec 26 03:07:48 2009 +0000

    cleaned up imports

 hamster/stats_stats.py |   26 ++++++++------------------
 1 files changed, 8 insertions(+), 18 deletions(-)
---
diff --git a/hamster/stats_stats.py b/hamster/stats_stats.py
index 0cd79db..7bc7ad9 100644
--- a/hamster/stats_stats.py
+++ b/hamster/stats_stats.py
@@ -17,35 +17,25 @@
 # You should have received a copy of the GNU General Public License
 # along with Project Hamster.  If not, see <http://www.gnu.org/licenses/>.
 
-
 import pygtk
 pygtk.require('2.0')
 
 import os
+import time
+import datetime as dt
+import calendar
+from itertools import groupby
+from gettext import ngettext
+
 import gtk, gobject
 import pango
 
-import stuff
-import charting
-
-from edit_activity import CustomFactController
-import reports, graphics
-
-import widgets
+import stuff, charting, graphics, widgets
+from configuration import runtime
 
-from configuration import runtime, GconfStore
-import webbrowser
-
-from itertools import groupby
-from gettext import ngettext
-
-import datetime as dt
-import calendar
-import time
 from hamster.i18n import C_
 
 
-
 class StatsBox(gtk.VBox):
     def __init__(self):
         gtk.VBox.__init__(self)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]