123456789 |
- def get_replacement_stock() -> List[str]:
- """
- A list of faked names to replace the information you want to hide
- """
- stock = [f"{letter}..." for letter in ascii_uppercase] + [
- f"{a}{b}..." for a, b in list(itertools.combinations(ascii_uppercase, 2))
- ]
- random.shuffle(stock)
- return stock
|