Issue to not getting output data login with Dhan

Not getting output

from Dhan_Tradehull import Tradehull
import pdb
from rich import print


pd.set_option('display.max_columns', None)  # Show all columns

client_code = "1104651015"
token_id = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.eyJpc3MiOiJkaGFuIiwicGFydG5lcklkIjoiIiwiZXhwIjoxNzU3NTI2OTA0LCJ0b2tlbkNvbnN1bWVyVHlwZSI6IlNFTEYiLCJ3ZWJob29rVXJsIjoiIiwiZGhhbkNsaWVudElkIjoiMTEwNDY1MTAxNSJ9.v6fkxS2zazdoltKWK3WwSru0lV3n9pn-Ie913Aqrm0tFPHMshUV2sdMAyMtQosPeMd7_kQlDsS_9tWscqEYzfg"
tsl = Tradehull(client_code, token_id)

#tsl.get_intraday_data('ACC','NSE',1)

#tsl.get_intraday_data('Nifty', 'NSE',1)

#lst1 = tsl.get_ltp_data('ACC')
#lst2 = tsl.get_ltp_data('Nifty')

ltp_data = tsl.get_ltp_data(names=['ACC', 'NIFTY'])
nifty_ltp = ltp_data['NIFTY']

ohlc_data  = tsl.get_ohlc_data(names=['NIFTY'])
quote_data = tsl.get_quote_data(names=['ACC'])

pdb.set_trace()

print()

Error

PS D:\Trudehull_Algo Traning\Training Practice\Session 1-20250812T122254Z-1-001\Session 1\Connecting with Dhan> & C:/Users/HP/AppData/Local/Programs/Python/Python38/python.exe "d:/Trudehull_Algo Traning/Training Practice/Session 1-20250812T122254Z-1-001/Session 1/Connecting with Dhan/test_file_my key ID-Dhan.py"
Codebase Version 3
-----Logged into Dhan-----
reading existing file all_instrument 2025-08-12.csv
Got the instrument file

PS D:\Trudehull_Algo Traning\Training Practice\Session 1-20250812T122254Z-1-001\Session 1\Connecting with Dhan> 

Hi Tarun
Print is missing…

example…

print(ltp_data)