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 the documentation there are two references to 'filter':
'filter':
lambda r: r['Amount'] > 10 lambda tr: tr['amount'] > 10
Their use in an amount column with decimals results in
No data to write. '>' not supported between instances of 'str' and 'int'. Try again with '-c' option.
Hence it should perhaps be mentioned in the documentation and changed in the documentation to something like
'filter': lambda tr: float(tr['Amount']) > 10.0
in order to not surprise an unsuspecting user
The text was updated successfully, but these errors were encountered:
Good catch. Can you submit a PR with this change?
Sorry, something went wrong.
I have absolutely no idea how to do a Pull Request.
No branches or pull requests
In the documentation there are two references to
'filter':
Their use in an amount column with decimals results in
Hence it should perhaps be mentioned in the documentation and changed in the documentation to something like
in order to not surprise an unsuspecting user
The text was updated successfully, but these errors were encountered: