lint: fix quoting style everywhere
BUG=chromium:990019
TEST=`cros lint` is clean & CQ passes
Change-Id: I012966d34a45a01b3a940414b24316aee4ffe8af
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/chromite/+/1731476
Reviewed-by: Chris McDonald <cjmcdonald@chromium.org>
Reviewed-by: Will Bradley <wbbradley@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
Commit-Queue: Mike Frysinger <vapier@chromium.org>
diff --git a/scripts/cros_gdb.py b/scripts/cros_gdb.py
index b1edc13..1600834 100644
--- a/scripts/cros_gdb.py
+++ b/scripts/cros_gdb.py
@@ -123,7 +123,7 @@
def IsInChroot(self):
"""Decide whether we are in chroot or chrome-sdk."""
- return os.path.exists("/mnt/host/source/chromite/")
+ return os.path.exists('/mnt/host/source/chromite/')
def SimpleChromeGdb(self):
"""Get the name of the cross gdb based on board name."""
@@ -187,7 +187,7 @@
self.cross_gdb = self.GetCrossGdb()
else:
self.chrome_path = os.path.realpath(os.path.join(os.path.dirname(
- os.path.realpath(__file__)), "../../../.."))
+ os.path.realpath(__file__)), '../../../..'))
self.sdk_path = os.path.join(
path_util.FindCacheDir(), 'chrome-sdk/tarballs/')
self.sysroot = self.SimpleChromeSysroot()
@@ -579,7 +579,7 @@
help='board to debug for')
parser.add_argument('-g', '--gdb_args', action='append', default=[],
help='Arguments to gdb itself. If multiple arguments are'
- ' passed, each argument needs a separate \'-g\' flag.')
+ " passed, each argument needs a separate '-g' flag.")
parser.add_argument(
'--remote', default=None,
type=commandline.DeviceParser(commandline.DEVICE_SCHEME_SSH),