mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-24 16:17:37 +01:00
Drop Explicit Type conversions in __init__
s (#3056)
* Drop explicit type conversions in `__init__` s * missed one
This commit is contained in:
parent
a17a4c6c8f
commit
5e0bcfbcc6
26 changed files with 63 additions and 56 deletions
|
@ -260,5 +260,5 @@ class BotCommandScopeChatMember(BotCommandScope):
|
|||
self.chat_id = (
|
||||
chat_id if isinstance(chat_id, str) and chat_id.startswith("@") else int(chat_id)
|
||||
)
|
||||
self.user_id = int(user_id)
|
||||
self.user_id = user_id
|
||||
self._id_attrs = (self.type, self.chat_id, self.user_id)
|
||||
|
|
|
@ -235,7 +235,7 @@ class Chat(TelegramObject):
|
|||
**_kwargs: Any,
|
||||
):
|
||||
# Required
|
||||
self.id = int(id) # pylint: disable=invalid-name
|
||||
self.id = id # pylint: disable=invalid-name
|
||||
self.type = enum.get_member(constants.ChatType, type, type)
|
||||
# Optionals
|
||||
self.title = title
|
||||
|
|
|
@ -124,7 +124,7 @@ class ChatInviteLink(TelegramObject):
|
|||
|
||||
# Optionals
|
||||
self.expire_date = expire_date
|
||||
self.member_limit = int(member_limit) if member_limit is not None else None
|
||||
self.member_limit = member_limit
|
||||
self.name = name
|
||||
self.pending_join_request_count = (
|
||||
int(pending_join_request_count) if pending_join_request_count is not None else None
|
||||
|
|
|
@ -88,8 +88,8 @@ class Animation(_BaseThumbedMedium):
|
|||
bot=bot,
|
||||
)
|
||||
# Required
|
||||
self.width = int(width)
|
||||
self.height = int(height)
|
||||
self.width = width
|
||||
self.height = height
|
||||
self.duration = duration
|
||||
# Optional
|
||||
self.mime_type = mime_type
|
||||
|
|
|
@ -76,13 +76,13 @@ class Location(TelegramObject):
|
|||
**_kwargs: Any,
|
||||
):
|
||||
# Required
|
||||
self.longitude = float(longitude)
|
||||
self.latitude = float(latitude)
|
||||
self.longitude = longitude
|
||||
self.latitude = latitude
|
||||
|
||||
# Optionals
|
||||
self.horizontal_accuracy = float(horizontal_accuracy) if horizontal_accuracy else None
|
||||
self.live_period = int(live_period) if live_period else None
|
||||
self.heading = int(heading) if heading else None
|
||||
self.horizontal_accuracy = horizontal_accuracy
|
||||
self.live_period = live_period
|
||||
self.heading = heading
|
||||
self.proximity_alert_radius = (
|
||||
int(proximity_alert_radius) if proximity_alert_radius else None
|
||||
)
|
||||
|
|
|
@ -72,5 +72,5 @@ class PhotoSize(_BaseMedium):
|
|||
file_id=file_id, file_unique_id=file_unique_id, file_size=file_size, bot=bot
|
||||
)
|
||||
# Required
|
||||
self.width = int(width)
|
||||
self.height = int(height)
|
||||
self.width = width
|
||||
self.height = height
|
||||
|
|
|
@ -120,8 +120,8 @@ class Sticker(_BaseThumbedMedium):
|
|||
bot=bot,
|
||||
)
|
||||
# Required
|
||||
self.width = int(width)
|
||||
self.height = int(height)
|
||||
self.width = width
|
||||
self.height = height
|
||||
self.is_animated = is_animated
|
||||
self.is_video = is_video
|
||||
# Optional
|
||||
|
|
|
@ -89,8 +89,8 @@ class Video(_BaseThumbedMedium):
|
|||
bot=bot,
|
||||
)
|
||||
# Required
|
||||
self.width = int(width)
|
||||
self.height = int(height)
|
||||
self.width = width
|
||||
self.height = height
|
||||
self.duration = duration
|
||||
# Optional
|
||||
self.mime_type = mime_type
|
||||
|
|
|
@ -81,5 +81,5 @@ class VideoNote(_BaseThumbedMedium):
|
|||
bot=bot,
|
||||
)
|
||||
# Required
|
||||
self.length = int(length)
|
||||
self.length = length
|
||||
self.duration = duration
|
||||
|
|
|
@ -75,6 +75,6 @@ class Voice(_BaseMedium):
|
|||
bot=bot,
|
||||
)
|
||||
# Required
|
||||
self.duration = int(duration)
|
||||
self.duration = duration
|
||||
# Optional
|
||||
self.mime_type = mime_type
|
||||
|
|
|
@ -116,8 +116,8 @@ class InlineQueryResultLocation(InlineQueryResult):
|
|||
):
|
||||
# Required
|
||||
super().__init__(InlineQueryResultType.LOCATION, id)
|
||||
self.latitude = float(latitude)
|
||||
self.longitude = float(longitude)
|
||||
self.latitude = latitude
|
||||
self.longitude = longitude
|
||||
self.title = title
|
||||
|
||||
# Optionals
|
||||
|
@ -127,8 +127,8 @@ class InlineQueryResultLocation(InlineQueryResult):
|
|||
self.thumb_url = thumb_url
|
||||
self.thumb_width = thumb_width
|
||||
self.thumb_height = thumb_height
|
||||
self.horizontal_accuracy = float(horizontal_accuracy) if horizontal_accuracy else None
|
||||
self.heading = int(heading) if heading else None
|
||||
self.horizontal_accuracy = horizontal_accuracy
|
||||
self.heading = heading
|
||||
self.proximity_alert_radius = (
|
||||
int(proximity_alert_radius) if proximity_alert_radius else None
|
||||
)
|
||||
|
|
|
@ -123,8 +123,8 @@ class InlineQueryResultPhoto(InlineQueryResult):
|
|||
self.thumb_url = thumb_url
|
||||
|
||||
# Optionals
|
||||
self.photo_width = int(photo_width) if photo_width is not None else None
|
||||
self.photo_height = int(photo_height) if photo_height is not None else None
|
||||
self.photo_width = photo_width
|
||||
self.photo_height = photo_height
|
||||
self.title = title
|
||||
self.description = description
|
||||
self.caption = caption
|
||||
|
|
|
@ -179,15 +179,13 @@ class InputInvoiceMessageContent(InputMessageContent):
|
|||
self.currency = currency
|
||||
self.prices = prices
|
||||
# Optionals
|
||||
self.max_tip_amount = int(max_tip_amount) if max_tip_amount else None
|
||||
self.suggested_tip_amounts = (
|
||||
[int(sta) for sta in suggested_tip_amounts] if suggested_tip_amounts else None
|
||||
)
|
||||
self.max_tip_amount = max_tip_amount
|
||||
self.suggested_tip_amounts = suggested_tip_amounts
|
||||
self.provider_data = provider_data
|
||||
self.photo_url = photo_url
|
||||
self.photo_size = int(photo_size) if photo_size else None
|
||||
self.photo_width = int(photo_width) if photo_width else None
|
||||
self.photo_height = int(photo_height) if photo_height else None
|
||||
self.photo_size = photo_size
|
||||
self.photo_width = photo_width
|
||||
self.photo_height = photo_height
|
||||
self.need_name = need_name
|
||||
self.need_phone_number = need_phone_number
|
||||
self.need_email = need_email
|
||||
|
|
|
@ -79,9 +79,9 @@ class InputLocationMessageContent(InputMessageContent):
|
|||
self.longitude = longitude
|
||||
|
||||
# Optionals
|
||||
self.live_period = int(live_period) if live_period else None
|
||||
self.horizontal_accuracy = float(horizontal_accuracy) if horizontal_accuracy else None
|
||||
self.heading = int(heading) if heading else None
|
||||
self.live_period = live_period
|
||||
self.horizontal_accuracy = horizontal_accuracy
|
||||
self.heading = heading
|
||||
self.proximity_alert_radius = (
|
||||
int(proximity_alert_radius) if proximity_alert_radius else None
|
||||
)
|
||||
|
|
|
@ -501,7 +501,7 @@ class Message(TelegramObject):
|
|||
**_kwargs: Any,
|
||||
):
|
||||
# Required
|
||||
self.message_id = int(message_id)
|
||||
self.message_id = message_id
|
||||
# Optionals
|
||||
self.from_user = from_user
|
||||
self.sender_chat = sender_chat
|
||||
|
|
|
@ -51,6 +51,6 @@ class MessageAutoDeleteTimerChanged(TelegramObject):
|
|||
message_auto_delete_time: int,
|
||||
**_kwargs: Any,
|
||||
):
|
||||
self.message_auto_delete_time = int(message_auto_delete_time)
|
||||
self.message_auto_delete_time = message_auto_delete_time
|
||||
|
||||
self._id_attrs = (self.message_auto_delete_time,)
|
||||
|
|
|
@ -35,6 +35,6 @@ class MessageId(TelegramObject):
|
|||
__slots__ = ("message_id",)
|
||||
|
||||
def __init__(self, message_id: int, **_kwargs: Any):
|
||||
self.message_id = int(message_id)
|
||||
self.message_id = message_id
|
||||
|
||||
self._id_attrs = (self.message_id,)
|
||||
|
|
|
@ -239,7 +239,7 @@ class Update(TelegramObject):
|
|||
**_kwargs: Any,
|
||||
):
|
||||
# Required
|
||||
self.update_id = int(update_id)
|
||||
self.update_id = update_id
|
||||
# Optionals
|
||||
self.message = message
|
||||
self.edited_message = edited_message
|
||||
|
|
|
@ -128,7 +128,7 @@ class User(TelegramObject):
|
|||
**_kwargs: Any,
|
||||
):
|
||||
# Required
|
||||
self.id = int(id) # pylint: disable=invalid-name
|
||||
self.id = id # pylint: disable=invalid-name
|
||||
self.first_name = first_name
|
||||
self.is_bot = is_bot
|
||||
# Optionals
|
||||
|
|
|
@ -49,7 +49,7 @@ class UserProfilePhotos(TelegramObject):
|
|||
|
||||
def __init__(self, total_count: int, photos: List[List[PhotoSize]], **_kwargs: Any):
|
||||
# Required
|
||||
self.total_count = int(total_count)
|
||||
self.total_count = total_count
|
||||
self.photos = photos
|
||||
|
||||
self._id_attrs = (self.total_count, self.photos)
|
||||
|
|
|
@ -71,7 +71,7 @@ class VideoChatEnded(TelegramObject):
|
|||
__slots__ = ("duration",)
|
||||
|
||||
def __init__(self, duration: int, **_kwargs: object) -> None:
|
||||
self.duration = int(duration) if duration is not None else None
|
||||
self.duration = duration
|
||||
self._id_attrs = (self.duration,)
|
||||
|
||||
|
||||
|
|
|
@ -144,13 +144,16 @@ class ChatMigrated(TelegramError):
|
|||
Args:
|
||||
new_chat_id (:obj:`int`): The new chat id of the group.
|
||||
|
||||
Attributes:
|
||||
new_chat_id (:obj:`int`): The new chat id of the group.
|
||||
|
||||
"""
|
||||
|
||||
__slots__ = ("new_chat_id",)
|
||||
|
||||
def __init__(self, new_chat_id: int):
|
||||
super().__init__(f"Group migrated to supergroup. New chat id: {new_chat_id}")
|
||||
self.new_chat_id = int(new_chat_id)
|
||||
self.new_chat_id = new_chat_id
|
||||
|
||||
def __reduce__(self) -> Tuple[type, Tuple[int]]: # type: ignore[override]
|
||||
return self.__class__, (self.new_chat_id,)
|
||||
|
@ -160,16 +163,22 @@ class RetryAfter(TelegramError):
|
|||
"""
|
||||
Raised when flood limits where exceeded.
|
||||
|
||||
.. versionchanged:: 20.0
|
||||
:attr:`retry_after` is now an integer to comply with the Bot API.
|
||||
|
||||
Args:
|
||||
retry_after (:obj:`int`): Time in seconds, after which the bot can retry the request.
|
||||
|
||||
Attributes:
|
||||
retry_after (:obj:`int`): Time in seconds, after which the bot can retry the request.
|
||||
|
||||
"""
|
||||
|
||||
__slots__ = ("retry_after",)
|
||||
|
||||
def __init__(self, retry_after: int):
|
||||
super().__init__(f"Flood control exceeded. Retry in {float(retry_after)} seconds")
|
||||
self.retry_after = float(retry_after)
|
||||
super().__init__(f"Flood control exceeded. Retry in {retry_after} seconds")
|
||||
self.retry_after = retry_after
|
||||
|
||||
def __reduce__(self) -> Tuple[type, Tuple[float]]: # type: ignore[override]
|
||||
return self.__class__, (self.retry_after,)
|
||||
|
|
|
@ -85,7 +85,7 @@ class TestChatInviteLink:
|
|||
"is_primary": self.primary,
|
||||
"is_revoked": self.revoked,
|
||||
"expire_date": to_timestamp(self.expire_date),
|
||||
"member_limit": str(self.member_limit),
|
||||
"member_limit": self.member_limit,
|
||||
"name": self.name,
|
||||
"pending_join_request_count": str(self.pending_join_request_count),
|
||||
}
|
||||
|
|
|
@ -94,7 +94,7 @@ class TestErrors:
|
|||
assert e.new_chat_id == 1234
|
||||
|
||||
def test_retry_after(self):
|
||||
with pytest.raises(RetryAfter, match="Flood control exceeded. Retry in 12.0 seconds"):
|
||||
with pytest.raises(RetryAfter, match="Flood control exceeded. Retry in 12 seconds"):
|
||||
raise RetryAfter(12)
|
||||
|
||||
def test_conflict(self):
|
||||
|
@ -186,8 +186,8 @@ class TestErrors:
|
|||
assert str(e) == "This is a message"
|
||||
|
||||
e = RetryAfter(42)
|
||||
assert repr(e) == "RetryAfter('Flood control exceeded. Retry in 42.0 seconds')"
|
||||
assert str(e) == "Flood control exceeded. Retry in 42.0 seconds"
|
||||
assert repr(e) == "RetryAfter('Flood control exceeded. Retry in 42 seconds')"
|
||||
assert str(e) == "Flood control exceeded. Retry in 42 seconds"
|
||||
|
||||
e = BadRequest("This is a message")
|
||||
assert repr(e) == "BadRequest('This is a message')"
|
||||
|
|
|
@ -56,12 +56,12 @@ class TestInputInvoiceMessageContent:
|
|||
currency = "PTBCoin"
|
||||
prices = [LabeledPrice("label1", 42), LabeledPrice("label2", 314)]
|
||||
max_tip_amount = 420
|
||||
suggested_tip_amounts = ["314", "256"]
|
||||
suggested_tip_amounts = [314, 256]
|
||||
provider_data = "provider data"
|
||||
photo_url = "photo_url"
|
||||
photo_size = "314"
|
||||
photo_width = "420"
|
||||
photo_height = "256"
|
||||
photo_size = 314
|
||||
photo_width = 420
|
||||
photo_height = 256
|
||||
need_name = True
|
||||
need_phone_number = True
|
||||
need_email = True
|
||||
|
|
|
@ -140,7 +140,7 @@ class TestRequest:
|
|||
await httpx_request.post(None, None, None)
|
||||
|
||||
async def test_chat_migrated(self, monkeypatch, httpx_request: HTTPXRequest):
|
||||
server_response = b'{"ok": "False", "parameters": {"migrate_to_chat_id": "123"}}'
|
||||
server_response = b'{"ok": "False", "parameters": {"migrate_to_chat_id": 123}}'
|
||||
|
||||
monkeypatch.setattr(
|
||||
httpx_request,
|
||||
|
@ -154,7 +154,7 @@ class TestRequest:
|
|||
assert exc_info.value.new_chat_id == 123
|
||||
|
||||
async def test_retry_after(self, monkeypatch, httpx_request: HTTPXRequest):
|
||||
server_response = b'{"ok": "False", "parameters": {"retry_after": "42"}}'
|
||||
server_response = b'{"ok": "False", "parameters": {"retry_after": 42}}'
|
||||
|
||||
monkeypatch.setattr(
|
||||
httpx_request,
|
||||
|
@ -162,10 +162,10 @@ class TestRequest:
|
|||
mocker_factory(response=server_response, return_code=HTTPStatus.BAD_REQUEST),
|
||||
)
|
||||
|
||||
with pytest.raises(RetryAfter, match="Retry in 42.0") as exc_info:
|
||||
with pytest.raises(RetryAfter, match="Retry in 42") as exc_info:
|
||||
await httpx_request.post(None, None, None)
|
||||
|
||||
assert exc_info.value.retry_after == 42.0
|
||||
assert exc_info.value.retry_after == 42
|
||||
|
||||
async def test_unknown_request_params(self, monkeypatch, httpx_request: HTTPXRequest):
|
||||
server_response = b'{"ok": "False", "parameters": {"unknown": "42"}}'
|
||||
|
|
Loading…
Reference in a new issue