You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 22, 2024. It is now read-only.
Right now, a SECSection regex is used to identify a TOC section in get_section_narrative. That generally works pretty well. The matching TOC title text is then used to look for the section in the content but rather than sticking with the original regex, a more lenient match condition is ultimately used in 10-K’s and 10-Q’s with match_10k_toc_title_to_section. The better thing to do is likely stick with the original matching regex.
The lenient post-TOC match is why the EHC test fails for the BUSINESS section, and may be the reason for other failures as well.
Definition of Done
Updated section extraction logic such that fewer tests are marked as xfailed, in particular the EHC case mentioned above.
The text was updated successfully, but these errors were encountered:
Right now, a
SECSection
regex is used to identify a TOC section in get_section_narrative. That generally works pretty well. The matching TOC title text is then used to look for the section in the content but rather than sticking with the original regex, a more lenient match condition is ultimately used in 10-K’s and 10-Q’s with match_10k_toc_title_to_section. The better thing to do is likely stick with the original matching regex.The lenient post-TOC match is why the EHC test fails for the BUSINESS section, and may be the reason for other failures as well.
Definition of Done
The text was updated successfully, but these errors were encountered: