aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sec_certs/dataset/fips_algorithm.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sec_certs/dataset/fips_algorithm.py')
-rw-r--r--src/sec_certs/dataset/fips_algorithm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sec_certs/dataset/fips_algorithm.py b/src/sec_certs/dataset/fips_algorithm.py
index fbc8351a..f3f27c0b 100644
--- a/src/sec_certs/dataset/fips_algorithm.py
+++ b/src/sec_certs/dataset/fips_algorithm.py
@@ -82,7 +82,7 @@ class FIPSAlgorithmDataset(JSONPathDataset, ComplexSerializableType):
if failed_tuples:
failed_urls, failed_paths = zip(*failed_tuples)
responses = helpers.download_parallel(failed_urls, failed_paths)
- if any([x != constants.RESPONSE_OK for x in responses]):
+ if any(x != constants.RESPONSE_OK for x in responses):
raise ValueError("Failed to download the algorithms HTML data, the dataset won't be constructed.")
return paths