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 33c12f2 commit 3d25958
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def extract_docids_from_year_disclosures(res: io.BytesIO | None) -> List[dict]:
else:
membername = "N/A"
state = member.find("StateDst").text if member.find("StateDst") else "N/A"
filing_date = member.find("FilingDate").text if member.find("FilingDate") else "N/A"
filing_date = (
member.find("FilingDate").text if member.find("FilingDate") else "N/A"
)
doc_dictionary.append(
dict(
doc_id=doc_id,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import re
from PyPDF2 import PdfReader
from typing import Any

"""
Utility methods to extract data from pdf rows
"""
Expand Down

0 comments on commit 3d25958

Please sign in to comment.