(size=6, chars=string.ascii_letters + string.digits)
| 74 | |
| 75 | # random strings |
| 76 | def random_string(size=6, chars=string.ascii_letters + string.digits): |
| 77 | return ''.join(random.choice(chars) for _ in range(size)) |
| 78 | |
| 79 | |
| 80 | # gptchat |
nothing calls this directly
no outgoing calls
no test coverage detected