(size: int)
| 48 | |
| 49 | |
| 50 | def generate_random_string(size: int) -> str: |
| 51 | return "".join(random.choices(string.ascii_uppercase + string.digits, k=size)) |
| 52 | |
| 53 | |
| 54 | def make_html_body(val: str) -> bytes: |
no test coverage detected
searching dependent graphs…