diff options
| author | Adam Janovsky | 2022-05-20 17:20:48 +0200 |
|---|---|---|
| committer | Adam Janovsky | 2022-05-20 17:20:48 +0200 |
| commit | 9db545dbb2b644a01b8e49b4b2506ea03ec36b00 (patch) | |
| tree | b7a197b47a77ad46a7df1eef3af64c911c3641c4 /sec_certs | |
| parent | 4d7078d81f38d5ab4e31525ff8094be449e3b3b8 (diff) | |
| download | sec-certs-9db545dbb2b644a01b8e49b4b2506ea03ec36b00.tar.gz sec-certs-9db545dbb2b644a01b8e49b4b2506ea03ec36b00.tar.zst sec-certs-9db545dbb2b644a01b8e49b4b2506ea03ec36b00.zip | |
Docs: add some examples
Diffstat (limited to 'sec_certs')
| -rw-r--r-- | sec_certs/dataset/fips.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sec_certs/dataset/fips.py b/sec_certs/dataset/fips.py index 2defd9f1..8cef1520 100644 --- a/sec_certs/dataset/fips.py +++ b/sec_certs/dataset/fips.py @@ -254,8 +254,9 @@ class FIPSDataset(Dataset[FIPSCertificate], ComplexSerializableType): len(dset), len(dset.algorithms) if dset.algorithms is not None else 0, ) - logger.info("The dataset does not contain the results of the dependency analysis - calculating them now...") - dset.finalize_results() + # TODO: Fixme, this is really costly + # logger.info("The dataset does not contain the results of the dependency analysis - calculating them now...") + # dset.finalize_results() return dset def set_local_paths(self) -> None: |
