in Onboarding/AWS/Utils.py [0:0]
def remove_duplicates(lst: List[str], msg: str) -> Set[str]: no_dup = set(lst) if len(no_dup) != len(lst): print_warning(f"You entered duplicate {msg}, ignoring...") return no_dup