(length)
| 19 | |
| 20 | |
| 21 | def generate_random_id(length): |
| 22 | first_letter = string.ascii_uppercase + string.ascii_lowercase |
| 23 | letters = string.ascii_uppercase + string.ascii_lowercase + string.digits |
| 24 | return random.choice(first_letter) + "".join(random.choice(letters) for _ in range(length - 1)) |
| 25 | |
| 26 | |
| 27 | def current_timestamp_int_milliseconds(): |
no outgoing calls
no test coverage detected