Skip to content

Commit

Permalink
Doc Edits
Browse files Browse the repository at this point in the history
  • Loading branch information
Aluerie committed Sep 30, 2024
1 parent 8d166c3 commit 55f0486
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions steam/ext/dota2/models/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ class PartialUser(abc.PartialUser):
_state: GCState

async def dota2_profile(self):
"""Fetch user's Dota 2 profile card.
"""Fetch user's Dota 2 profile.
Contains basic information about the account. Somewhat mirrors old profile page.
Almost fully mirrors old profile page.
"""
await self._state.ws.send_gc_message(client_messages.ProfileRequest(account_id=self.id))
response = await self._state.ws.gc_wait_for(client_messages.ProfileResponse)
Expand All @@ -37,7 +37,7 @@ async def dota2_profile(self):
async def dota2_profile_card(self) -> ProfileCard:
"""Fetch user's Dota 2 profile card.
Contains basic information about the account. Somewhat mirrors old profile page.
Contains basic information about the account. Mirrors some from old profile page.
"""
await self._state.ws.send_gc_message(client_messages.ClientToGCGetProfileCard(account_id=self.id))
response = await self._state.ws.gc_wait_for(
Expand Down

0 comments on commit 55f0486

Please sign in to comment.