(size=6, chars=string.ascii_letters + string.digits)
| 21 | |
| 22 | # random strings |
| 23 | def random_string(size=6, chars=string.ascii_letters + string.digits): |
| 24 | return ''.join(random.choice(chars) for _ in range(size)) |
| 25 | |
| 26 | |
| 27 | ############### |
nothing calls this directly
no outgoing calls
no test coverage detected