marcenacp's picture
Deploy (see actual commits on https://github.com/mlcommons/croissant).
8c11dd4
raw
history blame
211 Bytes
"""Module to handle naming of RecordSets and distribution."""
def find_unique_name(names: set[str], name: str):
"""Find a unique UID."""
while name in names:
name = f"{name}_0"
return name