summaryrefslogtreecommitdiff
path: root/xgps
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2017-07-27 14:07:56 -0700
committerGary E. Miller <gem@rellim.com>2017-07-27 14:07:56 -0700
commit971f6bad0216f136aa0e477b2032c5947078f096 (patch)
tree9253b777c73b6a9f8914157857e8c069525f35ba /xgps
parentff0f84a7ab1d9d84bc3227917bbba4ed3929a55c (diff)
downloadgpsd-971f6bad0216f136aa0e477b2032c5947078f096.tar.gz
xgps: fix pylint complaint about initializer.
The old call to __init__ did look odd...
Diffstat (limited to 'xgps')
-rwxr-xr-xxgps3
1 files changed, 2 insertions, 1 deletions
diff --git a/xgps b/xgps
index 80df4e4e..8f7cc7a0 100755
--- a/xgps
+++ b/xgps
@@ -106,7 +106,8 @@ class SkyView(Gtk.DrawingArea):
SAT_RADIUS = 5 # Diameter of satellite circle
def __init__(self, rotate=0.0):
- GObject.GObject.__init__(self)
+ Gtk.DrawingArea.__init__(self)
+ # GObject.GObject.__init__(self)
self.set_size_request(400, 400)
self.cr = None # New cairo context for each expose event
self.step_of_grid = 45 # default step of polar grid