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
Ideally we'd be able to do something like this:
event_names = [event.action.name for event in events] if 'Approve Taxes' in event_names and 'Approve Parking' in event_names: change_state('Approved')
But currently we have to use:
event_names = [event['action']['name'] for event in events]
Not a huge deal, just easier to write. Related to #20
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ideally we'd be able to do something like this:
But currently we have to use:
Not a huge deal, just easier to write.
Related to #20
The text was updated successfully, but these errors were encountered: