-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix economy bugs #3144
Fix economy bugs #3144
Conversation
…ing unused env variables
Hey great job here! I have a couple small things going through.
|
Hey @jmaslek, thanks for reviewing this!
On the lines printed after using the 1 empty line for user input and start of the command output. I think this is valid across the terminal - does this make sense?
|
Nah. In your screenshot, when you ran
Should add be a newline between the two.
Still not updating for me
I see. That kinda makes sense. I would prefer just showing the loaded datasets, but that is our of scope here. |
…some issues with the plot - but not all
…, solve some issues with the plot - but not all" This reverts commit 1094b45.
Description
Fix [Bug] /economy/ $ ycrv --source investpy #3082 --> autocompletion and sources were not congruent. Removed the
Investing
/investpy
source until it's not fixed.Fix [Bug] /economy/ $ events --country united kingdom #3083 --> autocompletion to use "_" in countries with spaces. Removed the
Investing
/investpy
source until it's not fixed.Fix [Bug] /economy/ $ edebt --limit 10 #3084 --> added rank column based on debt.
Fix [Bug] /economy/ $ treasury --show parameters #3085 --> autocompletion was wrongly showing options for
treasure --show
(it is a boolean flag)Fix [Bug] /economy/ $ plot --y1 T20YIEM DFII10 #3087 --> autocompletion was using spaces instead of comma.
Fix [Bug] /economy/ $ qa #3150 --> fixed verification on empty datasets
Fix [Bug] /economy/ $ eval spread = dgs2 - dgs5 #3120 --> fixed the docstring and website docs
Fix [Bug] economy/spread doesn't exist #3148 --> commented out
spread
so it does not appear on autocompletion (not the best thing to do but followed what was done for this command - probably someone already trying to have an alternative data source to investpy)Relevant motivation and context.
🐛 💀
List any dependencies that are required for this change.
How has this been tested?
commodity_model
is not used in the SDK.from openbb_terminal.sdk import openbb
still runs. Also, tried some random commands and is all good.Checklist:
Others