summaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-06-20 14:54:52 -0700
committerGary E. Miller <gem@rellim.com>2018-06-20 14:54:52 -0700
commitf42e19c9bbd5aec19ea87d5b9a60c24c6e15dcd5 (patch)
tree3dddfef977d18e653889ef8f54865663d45e4df2 /devtools
parente4370b4523df12aced440d6d2972fe4ef3a0fb46 (diff)
downloadgpsd-f42e19c9bbd5aec19ea87d5b9a60c24c6e15dcd5.tar.gz
uninstall_clean.py: Fix for PEP8
Diffstat (limited to 'devtools')
-rwxr-xr-xdevtools/uninstall_cleanup.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/devtools/uninstall_cleanup.py b/devtools/uninstall_cleanup.py
index 41be7a8b..e78d4129 100755
--- a/devtools/uninstall_cleanup.py
+++ b/devtools/uninstall_cleanup.py
@@ -4,7 +4,10 @@
# Preserve this property!
from __future__ import absolute_import, print_function, division
-import glob, os, subprocess, sys
+import glob
+import os
+import subprocess
+import sys
GPS_LIB_NAME = 'gps'
@@ -103,8 +106,8 @@ class PythonExecutable(object):
return self
def __lt__(self, other):
- "Allow sorting."
- return self.path < other.path
+ "Allow sorting."
+ return self.path < other.path
@classmethod
def GetAllExecutables(cls, command_list):