diff --git a/steam/enums.py b/steam/enums.py index fd74ac62..300434fd 100644 --- a/steam/enums.py +++ b/steam/enums.py @@ -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): diff --git a/steam/trade.py b/steam/trade.py index 4a8e71cb..f1cead41 100644 --- a/steam/trade.py +++ b/steam/trade.py @@ -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 ------- diff --git a/steam/user.py b/steam/user.py index e379414e..219b4975 100644 --- a/steam/user.py +++ b/steam/user.py @@ -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