Skip to content

Commit

Permalink
revert changes to standardize_corp_names...the logic goes through man…
Browse files Browse the repository at this point in the history
…y channels
  • Loading branch information
Alan Mburu Kagiri committed Mar 6, 2024
1 parent 9f980ff commit 51f82d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/linkage.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def standardize_corp_names(company_name: str) -> str:
"""

company_name_split = company_name.title().split(" ")
company_name_split = company_name.upper().split(" ")

for i in range(len(company_name_split)):
if company_name_split[i] in list(COMPANY_TYPES.keys()):
Expand Down

0 comments on commit 51f82d4

Please sign in to comment.