Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/charts.py
diff options
context:
space:
mode:
Diffstat (limited to 'charts.py')
-rw-r--r--charts.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/charts.py b/charts.py
index 2cc0208..ad30d49 100644
--- a/charts.py
+++ b/charts.py
@@ -25,12 +25,12 @@ import sugarpycha.line
import sugarpycha.pie
import cairo
-import gobject
+from gi.repository import GObject
-class Chart(gobject.GObject):
+class Chart(GObject.GObject):
def __init__(self, type="vertical", width=600, height=460):
- gobject.GObject.__init__(self)
+ GObject.GObject.__init__(self)
self.dataSet = None
self.options = None