Skip to content

Commit 91a26b3

Browse files
authored
Apply suggestions from code review
1 parent 5fc456d commit 91a26b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/async_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async def fetch_user_data(user_id: int) -> dict:
2121
return {
2222
"id": user_id,
2323
"name": f"User{user_id}",
24-
"email": f"user{user_id}@example.com",
24+
"email": f"user{user_id}@example.com"
2525
}
2626

2727

@@ -44,7 +44,7 @@ async def get_weather_data(city: str) -> dict:
4444
"city": city,
4545
"temp": 72,
4646
"condition": "sunny",
47-
"timestamp": time.time(),
47+
"timestamp": time.time()
4848
}
4949

5050

0 commit comments

Comments
 (0)