Closed peter-gy closed 2 months ago
Ensure filing objects can be parsed even if votingAuthority fields are submitted as floating point numbers instead of integers.
votingAuthority
Minimal reproduction of the error this PR fixes:
import edgar edgar.set_identity('Hello there@world.com') edgar.get_by_accession_number('0001223779-20-000001').obj().infotable
Error:
File ~/Library/Application Support/hatch/env/virtual/mypk/5K67ojG_/mypk/lib/python3.11/site-packages/edgar/thirteenf.py:318, in ThirteenF.parse_infotable_xml(infotable_xml) 316 voting_auth_tag = info_tag.find(\"votingAuthority\") 317 info_table['SoleVoting'] = int(child_text(voting_auth_tag, \"Sole\")) --> 318 info_table['SharedVoting'] = int(child_text(voting_auth_tag, \"Shared\")) 319 info_table['NonVoting'] = int(child_text(voting_auth_tag, \"None\")) 320 rows.append(info_table) ValueError: invalid literal for int() with base 10: '0.0'"
Goal
Ensure filing objects can be parsed even if
votingAuthority
fields are submitted as floating point numbers instead of integers.Fixed Error
Minimal reproduction of the error this PR fixes:
Error: