Remove logging basic configuration as 1) the log level defaults to warnings already and 2) this was causing issues downstream when importing backtesting logic in other packages as subsequent calls to set the basic configuration are ignored

This commit is contained in:
moshferatu 2024-02-16 07:44:20 -08:00
parent d51bec8a46
commit 311a0595f8

View File

@ -16,8 +16,6 @@ from .option_type import OptionType
load_dotenv() load_dotenv()
logging.basicConfig(level=logging.WARN)
FEES_PER_CONTRACT = 0.80 FEES_PER_CONTRACT = 0.80
MARKET_CLOSE = '16:00:00' MARKET_CLOSE = '16:00:00'
MARKET_OPEN = '09:35:00' MARKET_OPEN = '09:35:00'