mirror of
https://github.com/ihabunek/toot
synced 2024-12-23 15:37:47 +01:00
Fixed type error in vote method signature
This commit is contained in:
parent
68cadd4053
commit
80e711a3a1
@ -1,4 +1,5 @@
|
||||
import re
|
||||
from typing import List
|
||||
import uuid
|
||||
|
||||
from urllib.parse import urlparse, urlencode, quote
|
||||
@ -361,7 +362,7 @@ def whois(app, user, account):
|
||||
return http.get(app, user, f'/api/v1/accounts/{account}').json()
|
||||
|
||||
|
||||
def vote(app, user, poll_id, choices: list[int]):
|
||||
def vote(app, user, poll_id, choices: List[int]):
|
||||
url = f"/api/v1/polls/{poll_id}/votes"
|
||||
json = {'choices': choices}
|
||||
return http.post(app, user, url, json=json).json()
|
||||
|
Loading…
Reference in New Issue
Block a user