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
AND
For example licensing.dedup() should have simplified the following expression:
licensing.dedup()
(gpl AND mit) AND mit AND (gpl OR mit) -> gpl AND mit AND (gpl OR mit)
(gpl AND mit) AND mit AND (gpl OR mit)
gpl AND mit AND (gpl OR mit)
But currently it does not flatten AND statements in parenthesis, but it should.
This can be done either by:
licensing.dedup(str(expression.flatten()))
The text was updated successfully, but these errors were encountered:
AyanSinhaMahapatra
No branches or pull requests
For example
licensing.dedup()
should have simplified the following expression:(gpl AND mit) AND mit AND (gpl OR mit)
->gpl AND mit AND (gpl OR mit)
But currently it does not flatten AND statements in parenthesis, but it should.
This can be done either by:
licensing.dedup(str(expression.flatten()))
(?)The text was updated successfully, but these errors were encountered: