We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In whattrainisitnow.com, I parse the message field in https://pollbot.services.mozilla.com/v1/firefox/130.0/telemetry/main-summary-uptake to extract the uptake rate.
This rate only has 1 decimal, could we have 3 decimals instead to reduce the rounding?
I believe just changing this line: https://pollbot.services.mozilla.com/v1/firefox/130.0/telemetry/main-summary-uptake
Not a python person, but I think that changing {:.1f} to {:.3f} would probably do it.
{:.1f}
{:.3f}
Happy to make a pull request if necessary.
Thanks
The text was updated successfully, but these errors were encountered:
Fixed in #482
Sorry, something went wrong.
No branches or pull requests
In whattrainisitnow.com, I parse the message field in https://pollbot.services.mozilla.com/v1/firefox/130.0/telemetry/main-summary-uptake to extract the uptake rate.
This rate only has 1 decimal, could we have 3 decimals instead to reduce the rounding?
I believe just changing this line:
https://pollbot.services.mozilla.com/v1/firefox/130.0/telemetry/main-summary-uptake
Not a python person, but I think that changing
{:.1f}
to{:.3f}
would probably do it.Happy to make a pull request if necessary.
Thanks
The text was updated successfully, but these errors were encountered: