diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-28 00:11:09 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-28 00:11:09 -0600 |
commit | a5818d5b353aa9d9607e77d9d2a46abd8da09bc6 (patch) | |
tree | 165991c0145b09cecb9033887df171618ba00b8d | |
parent | 96715ca3ce3817690ac7e4db3fee6062089956c1 (diff) |
format
-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, |