diff options
| author | Adam Janovsky | 2022-05-20 11:12:03 +0200 |
|---|---|---|
| committer | Adam Janovsky | 2022-05-20 11:12:03 +0200 |
| commit | 2cf170fd73d06af577e471d7cd125538e3283c4a (patch) | |
| tree | eac46245516deb6428c3a102bd0e0b0674ff9089 /cc_cli.py | |
| parent | 10b3b57c8df3e467df2f8fbc617c25a6c0d578d5 (diff) | |
| parent | 279d732e16347ffc08506330cb269887f86d8e61 (diff) | |
| download | sec-certs-2cf170fd73d06af577e471d7cd125538e3283c4a.tar.gz sec-certs-2cf170fd73d06af577e471d7cd125538e3283c4a.tar.zst sec-certs-2cf170fd73d06af577e471d7cd125538e3283c4a.zip | |
merge main
Diffstat (limited to 'cc_cli.py')
| -rwxr-xr-x | cc_cli.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -8,7 +8,8 @@ from typing import List, Optional import click from sec_certs.config.configuration import config -from sec_certs.dataset.common_criteria import CCDataset +from sec_certs.dataset import CCDataset +from sec_certs.helpers import warn_if_missing_poppler logger = logging.getLogger(__name__) @@ -126,6 +127,7 @@ def main( "Error: You want to convert pdfs -> txt, but the pdfs were not downloaded. You must use 'download' action first." ) sys.exit(1) + warn_if_missing_poppler() dset.convert_all_pdfs() if "analyze" in actions_set: |
