From 51014d5a70a1bb4fa88bc63582c0a7b69c66592e Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Wed, 23 Dec 2015 12:44:14 -0600 Subject: [PATCH] flake8 fixes --- speedtest_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/speedtest_cli.py b/speedtest_cli.py index d8dd711..d7254b0 100755 --- a/speedtest_cli.py +++ b/speedtest_cli.py @@ -626,7 +626,7 @@ class Speedtest(object): server_config = root.find('server-config').attrib download = root.find('download').attrib upload = root.find('upload').attrib - times = root.find('times').attrib + # times = root.find('times').attrib client = root.find('client').attrib except AttributeError: @@ -634,7 +634,7 @@ class Speedtest(object): server_config = get_attributes_by_tag_name(root, 'server-config') download = get_attributes_by_tag_name(root, 'download') upload = get_attributes_by_tag_name(root, 'upload') - times = get_attributes_by_tag_name(root, 'times') + # times = get_attributes_by_tag_name(root, 'times') client = get_attributes_by_tag_name(root, 'client') ignore_servers = map(int, server_config['ignoreids'].split(','))