diff options
Diffstat (limited to 'server/create_db.py')
-rw-r--r-- | server/create_db.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/create_db.py b/server/create_db.py index d31c6f6..8ba1343 100644 --- a/server/create_db.py +++ b/server/create_db.py @@ -47,7 +47,9 @@ def init_db(): for hour, price in times_and_prices: bid = Bid( - timestamp=datetime(2025, 4, 25, hour, 0, tzinfo=NEW_ENGLAND_TZ).astimezone(UTC), + timestamp=datetime( + 2025, 4, 25, hour, 0, tzinfo=NEW_ENGLAND_TZ + ).astimezone(UTC), quantity=10.0, price=price, user_id=user.id, |