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
This error shows up in sentry: invalid literal for int() with base 10: '1__2__3__choice_value'
invalid literal for int() with base 10: '1__2__3__choice_value'
It seems to be because choices sometimes have a data_type == 'integer' despite being a string:
data_type == 'integer'
The text was updated successfully, but these errors were encountered:
Strings get into the raw_value param and those would not be handled well casting to a float either.
raw_value
float
Sorry, something went wrong.
No branches or pull requests
This error shows up in sentry:
invalid literal for int() with base 10: '1__2__3__choice_value'
It seems to be because choices sometimes have a
data_type == 'integer'
despite being a string:The text was updated successfully, but these errors were encountered: