(length: int)
| 38 | |
| 39 | |
| 40 | def get_random_string(length: int) -> str: |
| 41 | import random |
| 42 | import string |
| 43 | |
| 44 | letters_digits = string.ascii_letters + string.digits |
| 45 | return "".join(random.choice(letters_digits) for _ in range(length)) |
| 46 | |
| 47 | |
| 48 | def func_generator(self, method_name, dispatch_fn, collect_fn, execute_fn, blocking): |
no outgoing calls
no test coverage detected