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
currently this is a thing
.filter( attempt( lambda i: i['LAST_UPD'] > datetime.date(2019, 7, 1), False ) )
and
.filter( attempt( lambda i: i['LAST_UPD'] > datetime.date(2019, 7, 1), default_output=False ) )
however
.filter( lambda i: i['LAST_UPD'] > datetime.date(2019, 7, 1), skip_errors=True )
feels a lot nicer and is easier to remember
.filter( lambda i: i['LAST_UPD'] > datetime.date(2019, 7, 1), errors=False )
is really clean too
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently this is a thing
and
however
feels a lot nicer and is easier to remember
is really clean too
The text was updated successfully, but these errors were encountered: