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
@madpah a huge change i would suggest is: all optional lists become non-optional sets. based on https://github.com/CycloneDX/cyclonedx-python-lib/pull/148/files#r798309225
this way a lot of problems would be solved:
object.add_<list-property>()
set
set([...])
{...}
Originally posted by @jkowalleck in #148 (comment)
The text was updated successfully, but these errors were encountered:
Set
List
madpah
Successfully merging a pull request may close this issue.
@madpah a huge change i would suggest is: all optional lists become non-optional sets.
based on https://github.com/CycloneDX/cyclonedx-python-lib/pull/148/files#r798309225
this way a lot of problems would be solved:
object.add_<list-property>()
all the timeset
is falsy - for easy size-checks)set
-literal: instead of writingset([...])
simply write{...}
- if this was needed at any place, stillOriginally posted by @jkowalleck in #148 (comment)
The text was updated successfully, but these errors were encountered: