summaryrefslogtreecommitdiff
path: root/gps/gps.py
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-11-22 09:43:05 -0500
committerEric S. Raymond <esr@thyrsus.com>2013-11-22 09:43:05 -0500
commit4f07378990aa496445c55856d96c3728d42e14f7 (patch)
tree90c637c44e6d6ae02670f1582ee7d69cecf0f749 /gps/gps.py
parent44a8fd5bdc103601c0fac86636514d78d36f05d3 (diff)
downloadgpsd-4f07378990aa496445c55856d96c3728d42e14f7.tar.gz
Fix a pylint warning. With this scons audit runs completely clean again.
Diffstat (limited to 'gps/gps.py')
-rwxr-xr-xgps/gps.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gps/gps.py b/gps/gps.py
index 6e495620..a23ddb16 100755
--- a/gps/gps.py
+++ b/gps/gps.py
@@ -166,6 +166,7 @@ class gpsdata:
class gps(gpscommon, gpsdata, gpsjson):
"Client interface to a running gpsd instance."
def __init__(self, host="127.0.0.1", port=GPSD_PORT, verbose=0, mode=0):
+ gpsjson.__init__(self)
gpscommon.__init__(self, host, port, verbose)
gpsdata.__init__(self)
self.newstyle = False