From 256728eac79780631c73688a6819344342d731c9 Mon Sep 17 00:00:00 2001 From: Rohan Agarwal Date: Mon, 30 Sep 2024 14:24:07 -0400 Subject: [PATCH] fix --- cdp/smart_contract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdp/smart_contract.py b/cdp/smart_contract.py index 7a31de4..94c7593 100644 --- a/cdp/smart_contract.py +++ b/cdp/smart_contract.py @@ -33,7 +33,7 @@ def __repr__(self) -> str: class TokenOptions: """Options for ERC20 token contracts.""" - def __init__(self, name: str, symbol: str, total_supply: int | Decimal | str): + def __init__(self, name: str, symbol: str, total_supply: int | str): self.name = name self.symbol = symbol self.total_supply = total_supply