We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc456d commit 91a26b3Copy full SHA for 91a26b3
1 file changed
examples/async_example.py
@@ -21,7 +21,7 @@ async def fetch_user_data(user_id: int) -> dict:
21
return {
22
"id": user_id,
23
"name": f"User{user_id}",
24
- "email": f"user{user_id}@example.com",
+ "email": f"user{user_id}@example.com"
25
}
26
27
@@ -44,7 +44,7 @@ async def get_weather_data(city: str) -> dict:
44
"city": city,
45
"temp": 72,
46
"condition": "sunny",
47
- "timestamp": time.time(),
+ "timestamp": time.time()
48
49
50
0 commit comments