summaryrefslogtreecommitdiff
path: root/gpscap.py
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-06-20 10:44:48 -0700
committerGary E. Miller <gem@rellim.com>2018-06-20 10:44:48 -0700
commit947a4ec5859a9080c893d8b727a421113c0619c2 (patch)
treeec06ec864da7f08447a090f35cfe2ffe5ccaa4aa /gpscap.py
parent5e6edbe782b6ccd89557b4014b722366111f7031 (diff)
downloadgpsd-947a4ec5859a9080c893d8b727a421113c0619c2.tar.gz
gpscap.py: Fix for PEP8
Diffstat (limited to 'gpscap.py')
-rw-r--r--gpscap.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/gpscap.py b/gpscap.py
index 28ce0f69..2451240f 100644
--- a/gpscap.py
+++ b/gpscap.py
@@ -115,8 +115,8 @@ class GPSDictionary(configparser.RawConfigParser):
if self.has_option(dev, "techdoc"):
namefield = "<a href='%s'>%s</a>" \
% (self.get(dev, "techdoc"), dev)
- if ((self.has_option(dev, "discontinued")
- and self.getboolean(dev, "discontinued"))):
+ if ((self.has_option(dev, "discontinued") and
+ self.getboolean(dev, "discontinued"))):
namefield = namefield + "&nbsp;<img title='Device " \
"discontinued' src='discontinued.png' " \
"alt='Discontinued icon'>"
@@ -142,8 +142,8 @@ class GPSDictionary(configparser.RawConfigParser):
"alt='Regression-test icon'>"
else:
testfield += tested
- if ((self.has_option(dev, "configurable")
- and self.get(dev, "configurable") == 'insane')):
+ if ((self.has_option(dev, "configurable") and
+ self.get(dev, "configurable") == 'insane')):
testfield += "<img title='Requires -b option' " \
"src='noconfigure.png' " \
"alt='No-configure icon'>"
@@ -164,8 +164,8 @@ class GPSDictionary(configparser.RawConfigParser):
elif self.get(dev, "rating") == "broken":
testfield += "<img title='Device is broken' " \
"src='bomb.png' alt='Bomb icon'>"
- if ((self.has_option(dev, "usbchip")
- and self.get(dev, "usbchip") in hotpluggables)):
+ if ((self.has_option(dev, "usbchip") and
+ self.get(dev, "usbchip") in hotpluggables)):
testfield += "<img title='udev hotplug' " \
"src='hotplug.png' alt='Hotplug icon'>"
ofp.write("<td>%s</td>\n" % testfield)
@@ -173,8 +173,8 @@ class GPSDictionary(configparser.RawConfigParser):
if self.has_option(dev, "nmea"):
nmea = self.get(dev, "nmea")
ofp.write("<td>%s</td>\n" % nmea)
- if ((self.has_option(dev, "pps")
- and self.get(dev, "pps") == "True")):
+ if ((self.has_option(dev, "pps") and
+ self.get(dev, "pps") == "True")):
pps_accuracy = time_offset = ""
if self.has_option(dev, "pps_accuracy"):
pps_accuracy = self.get(dev, "pps_accuracy")