diff --git a/aiogram/types/labeled_price.py b/aiogram/types/labeled_price.py index a2df94e4..f2cbd38b 100644 --- a/aiogram/types/labeled_price.py +++ b/aiogram/types/labeled_price.py @@ -10,3 +10,6 @@ class LabeledPrice(base.TelegramObject): """ label: base.String = fields.Field() amount: base.Integer = fields.Field() + + def __init__(self, label: base.String, amount: base.Integer): + super(LabeledPrice, self).__init__(label=label, amount=amount)