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
obj = NameParser("UNILEVER LTD")
obj.full_name # "UNILEVER LTD"
obj.capitalize(force=True)
obj.full_name # "UNILEVER LTD" instead of "Unilever Ltd", even though other internal fields have been updated
The text was updated successfully, but these errors were encountered:
Thanks for the bug report. I think this was left over from when full_name was functioning more like a reference to the original name, but now there is original_name for that. Returning the current formatted string output makes more sense, even if it's just a reference to str(obj).
The text was updated successfully, but these errors were encountered: