mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 19:14:54 +02:00
Use literals wherever possible. (#9194)
* Use literals wherever possible. These were found with flake8-comprehensions.
This commit is contained in:
@@ -493,7 +493,7 @@ def main():
|
||||
|
||||
# print and save summary results
|
||||
results_file = open(log_dir+'/results', 'w')
|
||||
outputs = [outq for outq in iter(outqueue.get, SENTINEL)]
|
||||
outputs = list(iter(outqueue.get, SENTINEL))
|
||||
outputs.sort(key=lambda x: x[0])
|
||||
failed = False
|
||||
results_msg = ""
|
||||
|
||||
Reference in New Issue
Block a user