summaryrefslogtreecommitdiff
path: root/gpscat
diff options
context:
space:
mode:
authorFred Wright <fw@fwright.net>2017-07-14 15:46:45 -0700
committerFred Wright <fw@fwright.net>2017-07-14 15:46:45 -0700
commitbda3f970bd713cf553dcca47beb22682a49c7081 (patch)
tree7e86c72d197cd335455c8da85e7045dd632ba35e /gpscat
parent81e3562ddf0817e513518dea866276729361d5e8 (diff)
downloadgpsd-bda3f970bd713cf553dcca47beb22682a49c7081.tar.gz
Fixes some pylint issues.
This doesn't fix all complaints by pylint, but significantly reduces their number. Ditto for pep8 complaints. Also makes a couple of related cosmetic edits. TESTED: Ran "scons build-all check" with no errors. Both "pylint" and "pep8" targets report fewer issues.
Diffstat (limited to 'gpscat')
-rwxr-xr-xgpscat6
1 files changed, 4 insertions, 2 deletions
diff --git a/gpscat b/gpscat
index 037b57da..97a8a74f 100755
--- a/gpscat
+++ b/gpscat
@@ -10,15 +10,17 @@
# Preserve this property!
from __future__ import absolute_import, print_function, division
-import curses.ascii
import getopt
-import gps.packet as sniffer
import os
import select
import socket
import sys
import termios
+import curses.ascii
+
+import gps.packet as sniffer
+
# The spec says 82, but some receivers (TN-200, GSW 2.3.2) output 86 characters
# the Skyrtaq S2525F8 emits 100 chars
NMEA_MAX = 102