You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is the suggested response correct? I believe we do allow users to input a list that contains both strings and enums, we don't only allow users to input either a list of string or a list of enum
gentle ping on this. I'm going to close this issue as part of our migration to the microsoft/typespec repo. If you think that this is still an issue, can you reopen on the microsoft/typespec repo? Thanks!
E.g. in our generated code, we have
:vartype char_filters: list[str or ~azure.search.documents.indexes.models.CharFilterName]
it should be
:vartype char_filters: list[str] or list[~azure.search.documents.indexes.models.CharFilterName]
to make our doc tool happy.
The text was updated successfully, but these errors were encountered: