summaryrefslogtreecommitdiff
path: root/maskaudit.py.in
diff options
context:
space:
mode:
authorJon Schlueter <jschlueter@navigationsolutions.com>2015-02-13 08:48:45 -0500
committerJon Schlueter <jschlueter@navigationsolutions.com>2015-02-13 08:48:45 -0500
commita5b89d9192ac806c19d51ae4447bdae8ce74bed9 (patch)
treed9c79a0879ec05553124c86440d49c7f1ef26d6f /maskaudit.py.in
parent528f6ab639dc7ab2ba7439e3e766ee0df02cab4b (diff)
downloadgpsd-a5b89d9192ac806c19d51ae4447bdae8ce74bed9.tar.gz
pep8 cleanup to split out imports in maskaudit.py.in to individual lines
Diffstat (limited to 'maskaudit.py.in')
-rw-r--r--maskaudit.py.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/maskaudit.py.in b/maskaudit.py.in
index 0c8fb955..855ffe97 100644
--- a/maskaudit.py.in
+++ b/maskaudit.py.in
@@ -11,7 +11,11 @@
#
# With -t, tabulate usage of defines to find unused ones. Requires -c or -d.
-import sys, commands, glob, getopt
+import commands
+import getopt
+import glob
+import sys
+
class SourceExtractor:
def __init__(self, sourcefile, clientside):