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
It doesn't work to input a list of lists for the explicit distribution in iovsearch. I think that the type conversion is not working correctly.
Here are some example error messages:
Distribution = “explicit” param_list <- list('CL', 'VC', "F1", "MAT") - Exception: 'ValueError(\'distribution == "explicit" requires parameters to be given as lists of lists\')' param_list <- list(list('CL', 'VC', "F1", "MAT")) - Invalid `list_of_parameters`: got `[['CL', 'VC', 'F1', 'MAT']]` of type <class 'list'>, expected typing.Optional[typing.List[str]] param_list <- [list["CL", "VC", "F1", "MAT"]] - Error: unexpected '[' in "param_list <- [" param_list <- list["CL", "VC", "F1", "MAT"] - object of type 'builtin' is not subsettable param_list <- list[list('CL', 'VC', "F1", "MAT")] - Error in list[list("CL", "VC", "F1", "MAT")] : object of type 'builtin' is not subsettable param_list <- list(list('CL'), list('VC'), list("F1"), list("MAT")) - Invalid `list_of_parameters`: got `[['CL'], ['VC'], ['F1'], ['MAT']]` of type <class 'list'>, expected typing.Optional[typing.List[str]] distribution = “disjoint” param_list <- list(list('CL'), list('VC'), list("F1"), list("MAT")) Invalid `list_of_parameters`: got `[['CL'], ['VC'], ['F1'], ['MAT']]` of type <class 'list'>, expected typing.Optional[typing.List[str]]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It doesn't work to input a list of lists for the explicit distribution in iovsearch. I think that the type conversion is not working correctly.
Here are some example error messages:
The text was updated successfully, but these errors were encountered: