Skip to content

Commit

Permalink
fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mmistroni committed Sep 19, 2024
1 parent 187be07 commit ebc99b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import re
from PyPDF2 import PdfReader
from typing import Any
from typing import Any, Dict

"""
Utility methods to extract data from pdf rows
Expand All @@ -14,7 +14,7 @@ def extract_from_disclosure(pdf_reader: PdfReader) -> dict[str, Any]:
# then we have two blanks
# then we have ticker [ST] Transaction Transaction Date Amount #

filer_info = dict()
filer_info:Dict[str, int] = {}
for page_num in range(0, len(pdf_reader.pages)):
page = pdf_reader.pages[page_num]

Expand Down

0 comments on commit ebc99b6

Please sign in to comment.