Closed Viamo closed 2 months ago
In the file main.py, the variable reqResp is never used because the output is printed from the wrong variable due to a typo.
main.py
reqResp
The variable reqResp should be used correctly, and the correct variable's value should be printed.
The issue is due to a typo causing the wrong variable to be printed. The reqResp variable should be used to display the correct output.
Will have a fix for this! Thanks for catching this @Viamo !
PR opened: https://github.com/deepgram/deepgram-python-sdk/pull/460
This has been merged and is currently available.
What is the current behavior?
In the file
main.py
, the variablereqResp
is never used because the output is printed from the wrong variable due to a typo.Steps to reproduce
main.py
file.reqResp
is defined but not used.Expected behavior
The variable
reqResp
should be used correctly, and the correct variable's value should be printed.Other information
The issue is due to a typo causing the wrong variable to be printed. The
reqResp
variable should be used to display the correct output.