Skip to content

Commit

Permalink
fix(scrape_pacer_free): correct order of ocr_available function params
Browse files Browse the repository at this point in the history
  • Loading branch information
quevon24 committed Aug 8, 2024
1 parent c7d7078 commit 7190f22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def do_everything(courts, date_start, date_end, index, queue):
logger.info("Getting PDFs from free document reports")
get_pdfs(courts, date_start, date_end, index, queue)
logger.info("Doing OCR and saving items to Solr.")
ocr_available(index, queue)
ocr_available(queue, index)


class Command(VerboseCommand):
Expand Down

0 comments on commit 7190f22

Please sign in to comment.