Bug 1681096 - python3 - pylint --py3k - W1655: dict.keys referenced when not iterating (dict-keys-not-iterating) r=marionette-reviewers,perftest-reviewers,jmaher,maja_zf

Differential Revision: https://phabricator.services.mozilla.com/D99056
This commit is contained in:
Bob Clary
2020-12-11 21:13:12 +00:00
parent abe7e649b3
commit a283842614
11 changed files with 34 additions and 33 deletions

View File

@@ -57,7 +57,7 @@ class TestConfig(object):
from mozlog.structuredlog import log_levels
format_desc = "The default format to use when running tests with `mach test`."
format_choices = log_formatters.keys()
format_choices = list(log_formatters)
level_desc = "The default log level to use when running tests with `mach test`."
level_choices = [l.lower() for l in log_levels]
return [