10 lines
181 B
Python
10 lines
181 B
Python
|
from typing import Any, Dict
|
||
|
|
||
|
|
||
|
def parse_weather(api_response: Dict[str, Any]) -> str:
|
||
|
return ""
|
||
|
|
||
|
|
||
|
def parse_weather_current(api_response: Dict[str, Any]) -> str:
|
||
|
return ""
|