Format bounty price with localized currency symbol.
(val: Any)
| 15496 | |
| 15497 | stored_path = os.path.join(ATT_DIR, f"group_voice_{vid}.bin") |
| 15498 | try: |
| 15499 | size = _save_plain_upload(file_storage, stored_path) |
| 15500 | if int(size) > CHAT_MAX_BYTES: |
| 15501 | try: |
| 15502 | os.remove(stored_path) |
| 15503 | except Exception: |
| 15504 | pass |
| 15505 | conn.execute("DELETE FROM group_voice WHERE id=?", (vid,)) |
| 15506 | conn.commit() |
no test coverage detected