randydev commited on
Commit
15bf604
·
verified ·
1 Parent(s): 92e82d0

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +5 -5
main.py CHANGED
@@ -53,11 +53,11 @@ async def get_user(user_id=None):
53
  "dc_id": get_users.dc_id,
54
  "username": get_users.username if get_users else None,
55
  "photo": {
56
- "small_file_id": get_users.small_file_id,
57
- "small_photo_unique_id": get_users.small_photo_unique_id,
58
- "big_file_id": get_users.big_file_id,
59
- "has_animation": get_users.has_animation,
60
- "is_personal": get_users.is_personal
61
  }
62
  }
63
 
 
53
  "dc_id": get_users.dc_id,
54
  "username": get_users.username if get_users else None,
55
  "photo": {
56
+ "small_file_id": get_users.photo.small_file_id,
57
+ "small_photo_unique_id": get_users.photo.small_photo_unique_id,
58
+ "big_file_id": get_users.photo.big_file_id,
59
+ "has_animation": get_users.photo.has_animation,
60
+ "is_personal": get_users.photo.is_personal
61
  }
62
  }
63