-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
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
Add support for key_set qualifier #633
Add support for key_set qualifier #633
Conversation
Maybe I could add a way to set the separator |
8dbbf3a
to
f898c2b
Compare
f898c2b
to
9cda174
Compare
src/e3/anod/qualifiers_manager.py
Outdated
"""See QualifierDeclaration.default.""" | ||
return self._default | ||
|
||
def value(self, value: str | bool | frozenset[str]) -> str | bool | frozenset[str]: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is no case in which a frozen set is accepted as input
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have also remove bool for the same reason. If I missed something, let me know.
key_set qualifiers expect semi-colon separated list as value.
9cda174
to
133e73c
Compare
key_set qualifiers expect semi-colon separated list as value.
#630