Skip to content

Commit

Permalink
[docs] Add meaning of escrow in brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
Gobot1234 committed Sep 5, 2024
1 parent 0237f9e commit 213d9b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion steam/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -1179,7 +1179,7 @@ class TradeOfferState(IntEnum):
CanceledBySecondaryFactor = 10
"""The trade offer was cancelled by second factor."""
StateInEscrow = 11
"""The trade offer is in escrow."""
"""The trade offer is in escrow (hold)."""


class ChatMemberRank(IntEnum):
Expand Down
2 changes: 1 addition & 1 deletion steam/trade.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def __init__(
"""The time at which the trade was created."""
self.escrow: timedelta | None = None
"""
The time at which the escrow will end. Can be ``None`` if there is no escrow on the trade.
The time at which the escrow (hold) will end. Can be ``None`` if there is no escrow on the trade.
Warning
-------
Expand Down
2 changes: 1 addition & 1 deletion steam/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ async def unblock(self) -> None:
await self._state.unblock_user(self.id64)

async def escrow(self, token: str | None = None) -> timedelta | None:
"""Check how long any received items would take to arrive. ``None`` if the user has no escrow or has a
"""Check how long any received items would take to arrive. ``None`` if the user has no escrow (hold) or has a
private inventory.
Parameters
Expand Down

0 comments on commit 213d9b6

Please sign in to comment.