Spaces:
Running
Running
File size: 309 Bytes
ef088c2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
def format_candid_profile_link(candid_entity_id: int | str) -> str:
"""Format the Candid Search organization profile link.
Parameters
----------
candid_entity_id : int | str
Returns
-------
str
URL
"""
return f"https://app.candid.org/profile/{candid_entity_id}"
|