summaryrefslogtreecommitdiff
path: root/gps/gps.py
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-11-15 10:19:32 -0500
committerEric S. Raymond <esr@thyrsus.com>2013-11-15 10:19:32 -0500
commit7f23761c9ce26a5dddfddaf952fc81b590d474fc (patch)
tree9d7e48ba028521980d8810ef6f2b7c68683e80fb /gps/gps.py
parentaec99a6ce4b7070fe53073b076dbe4f59934d65f (diff)
downloadgpsd-7f23761c9ce26a5dddfddaf952fc81b590d474fc.tar.gz
Ritualistic pacification of pylint. All regression tests pass, xgps runs.
Diffstat (limited to 'gps/gps.py')
-rwxr-xr-xgps/gps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gps/gps.py b/gps/gps.py
index 73199a4e..c0082268 100755
--- a/gps/gps.py
+++ b/gps/gps.py
@@ -149,7 +149,7 @@ class gpsdata:
st += " %r\n" % sat
return st
-class gps(gpsdata, gpsjson):
+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):
gpscommon.__init__(self, host, port, verbose)