Repository URL to install this package:
def unique_list(duplicates_list): """Return unique list preserving the order. https://stackoverflow.com/a/58666031/1002277 """ used = set() unique = [x for x in duplicates_list if x not in used and (used.add(x) or True)] return unique