(quantity)
| 559 | |
| 560 | @staticmethod |
| 561 | def _get_random_letters(quantity): |
| 562 | return ''.join(random.choice(string.ascii_uppercase) for _ in range(quantity)) |
| 563 | |
| 564 | @staticmethod |
| 565 | def _get_random_numbers(quantity): |
no outgoing calls
no test coverage detected