removed Optional

This commit is contained in:
misagh 2018-11-21 23:35:44 +01:00
parent 4d75e9059c
commit 3a2134db24

View File

@ -9,8 +9,8 @@ logger = logging.getLogger(__name__)
class Wallet(NamedTuple): class Wallet(NamedTuple):
exchange: Optional[str] exchange: str
currency: Optional[str] currency: str
free: float = 0 free: float = 0
used: float = 0 used: float = 0
total: float = 0 total: float = 0