From 9a63ac2a3fd0a4ee1db48c6b98f0fc76550556b6 Mon Sep 17 00:00:00 2001 From: trojanhorse47 Date: Fri, 3 Oct 2025 11:38:56 +0200 Subject: [PATCH] Update __all__ in __init__.py to include MARKET_INSTRUCTIONS --- src/app/markets/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/markets/__init__.py b/src/app/markets/__init__.py index b782b8f..ef73f68 100644 --- a/src/app/markets/__init__.py +++ b/src/app/markets/__init__.py @@ -7,7 +7,7 @@ from .binance import BinanceWrapper from .cryptocompare import CryptoCompareWrapper from .yfinance import YFinanceWrapper -__all__ = [ "MarketAPIs", "BinanceWrapper", "CoinBaseWrapper", "CryptoCompareWrapper", "YFinanceWrapper" ] +__all__ = [ "MarketAPIsTool", "BinanceWrapper", "CoinBaseWrapper", "CryptoCompareWrapper", "YFinanceWrapper", "MARKET_INSTRUCTIONS" ] class MarketAPIsTool(BaseWrapper, Toolkit):