From f44633822962b7f1b8c556d9413fc7588705c8f2 Mon Sep 17 00:00:00 2001 From: Justin Flannery Date: Fri, 5 Jan 2024 23:26:36 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20asset.balance=5Fas=5Fof?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #114 --- lunchable/models/assets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lunchable/models/assets.py b/lunchable/models/assets.py index 0a974c0..2c6830e 100644 --- a/lunchable/models/assets.py +++ b/lunchable/models/assets.py @@ -37,8 +37,8 @@ class AssetsObject(LunchableModel): None, description="Display name of the asset (as set by user)" ) balance: float = Field(description=_AssetsDescriptions.balance) - balance_as_of: datetime.datetime = Field( - description=_AssetsDescriptions.balance_as_of + balance_as_of: Optional[datetime.datetime] = Field( + None, description=_AssetsDescriptions.balance_as_of ) closed_on: Optional[datetime.date] = Field( None, description=_AssetsDescriptions.closed_on