From d48a9f59b673b0fe05b88084f75b9af0174737f2 Mon Sep 17 00:00:00 2001 From: Gleb <67322871+rootgleb@users.noreply.github.com> Date: Tue, 20 Jan 2026 20:30:47 +0300 Subject: [PATCH] Update __init__.py Fixed error: Invoice.__init__() got an unexpected keyword argument 'fee_in_usd' --- cryptobot/models/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cryptobot/models/__init__.py b/cryptobot/models/__init__.py index addadd9..eb5c9e7 100644 --- a/cryptobot/models/__init__.py +++ b/cryptobot/models/__init__.py @@ -60,6 +60,7 @@ class Invoice: fee_asset: Optional[str] = None fee_amount: Optional[str] = None + fee_in_usd: Optional[str] = None paid_anonymously: bool = True paid_amount: Optional[str] = None