From a6d7a3fb5463f91ab3d968b815ebe660c8e353f5 Mon Sep 17 00:00:00 2001 From: "Bobby (aider)" Date: Mon, 17 Feb 2025 16:39:48 -0800 Subject: [PATCH] fix: Import time module to resolve undefined name error --- src/trading/watchlist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/trading/watchlist.py b/src/trading/watchlist.py index 25ab9f4..c6985d6 100644 --- a/src/trading/watchlist.py +++ b/src/trading/watchlist.py @@ -4,6 +4,7 @@ from typing import List, Optional from db.db_connection import create_client import logging import streamlit as st +import time logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__)