Remove unused variable

TrivialFix

Change-Id: I13c3bc036a3ae8e46a40bd7141afd7e36a276de2
This commit is contained in:
Béla Vancsics 2017-03-01 11:31:13 +01:00
parent a66d0735b2
commit c03372b0a2

View File

@ -71,10 +71,7 @@ def convert_integer_to_method_list(method_int):
return []
method_map = construct_method_map_from_config()
method_ints = []
for k, v in method_map.items():
method_ints.append(k)
method_ints.sort(reverse=True)
method_ints = sorted(method_map, reverse=True)
confirmed_methods = []
for m_int in method_ints: