timeki's picture
talk_to_ipcc (#29)
711bc31 verified
raw
history blame contribute delete
255 Bytes
from token import OP
from typing import Optional, TypedDict
class Location(TypedDict):
location: str
latitude: Optional[str]
longitude: Optional[str]
country_code: Optional[str]
country_name: Optional[str]
admin1: Optional[str]