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

Unified Diff: build/toolchain/get_concurrent_links.py

Issue 2312023003: Fix pylint warning. (Closed)
Patch Set: Created 4 years, 3 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain/get_concurrent_links.py
diff --git a/build/toolchain/get_concurrent_links.py b/build/toolchain/get_concurrent_links.py
index 7765d9ecabe1bafed8bf682fb06c567c9e6ef8c3..dc998398aec6937737c7ecd27e521870064f318a 100644
--- a/build/toolchain/get_concurrent_links.py
+++ b/build/toolchain/get_concurrent_links.py
@@ -67,7 +67,7 @@ def main():
parser.add_option('--mem_per_link_gb', action="store", type="int", default=8)
parser.add_option('--reserve_mem_gb', action="store", type="int", default=0)
parser.disable_interspersed_args()
- options, args = parser.parse_args()
+ options, _ = parser.parse_args()
print _GetDefaultConcurrentLinks(options.mem_per_link_gb,
options.reserve_mem_gb)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698