(length)
| 21 | GREEN = "\033[92m" |
| 22 | RESET = "\033[0m" |
| 23 | def rand_text_hex(length): |
| 24 | return ''.join(random.choice('0123456789abcdef') for _ in range(length)) |
| 25 | def rand_text_alpha_lower(length): |
| 26 | return ''.join(random.choice(string.ascii_lowercase) for _ in range(length)) |
| 27 | def rand_text_alpha(length): |
no outgoing calls
no test coverage detected