Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Unified Diff: tools/telemetry/telemetry/core/forwarders/android_forwarder.py

Issue 739623005: [Telemetry] Resolve errors due to new pylint checker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ready to land Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/core/forwarders/android_forwarder.py
diff --git a/tools/telemetry/telemetry/core/forwarders/android_forwarder.py b/tools/telemetry/telemetry/core/forwarders/android_forwarder.py
index 254b3382916be6a69f0e5ff01cca707acd1b71ec..30870a03449f41792a85fdfc6732bd731042ca9b 100644
--- a/tools/telemetry/telemetry/core/forwarders/android_forwarder.py
+++ b/tools/telemetry/telemetry/core/forwarders/android_forwarder.py
@@ -294,7 +294,7 @@ function doit() {
doit &
""" % {'dev': self._RNDIS_DEVICE, 'functions': 'rndis,adb',
- 'prefix': script_prefix }
+ 'prefix': script_prefix}
self._device.WriteFile('%s.sh' % script_prefix, script)
# TODO(szym): run via su -c if necessary.
self._device.RunShellCommand('rm %s.log' % script_prefix)
@@ -342,13 +342,13 @@ doit &
for line in interface_list:
if not line.startswith((' ', '\t')):
found_iface = iface in line
- match = re.search('(?<=inet )\S+', line)
+ match = re.search(r'(?<=inet )\S+', line)
if match:
address = match.group(0)
if '/' in address:
address = self._IpPrefix2AddressMask(address)
else:
- match = re.search('(?<=netmask )\S+', line)
+ match = re.search(r'(?<=netmask )\S+', line)
address = self._Ip2Long(address), int(match.group(0), 16)
if found_iface:
assert not iface_address, (
@@ -437,7 +437,7 @@ doit &
addresses, host_address = self._GetHostAddresses(host_iface)
assert host_address, 'Interface %s could not be configured.' % host_iface
- host_ip, netmask = host_address
+ host_ip, netmask = host_address # pylint: disable=unpacking-non-sequence
network = host_ip & netmask
if not _IsNetworkUnique(network, addresses):
@@ -483,7 +483,7 @@ doit &
packets from reaching the rndis interface
"""
policies = self._device.RunShellCommand('ip rule')
- if len(policies) > 1 and not ('lookup main' in policies[1]):
+ if len(policies) > 1 and not 'lookup main' in policies[1]:
self._device.RunShellCommand('ip rule add prio 1 from all table main')
self._device.RunShellCommand('ip route flush cache')
« no previous file with comments | « tools/telemetry/telemetry/core/extension_unittest.py ('k') | tools/telemetry/telemetry/core/gpu_device_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698