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
Operator._prepare_arguments currently contains the following lines:
Operator._prepare_arguments
# Process Thicknesses for p in self.parameters: if isinstance(p, Thickness): args.update(p._arg_values(grid=grid, **kwargs))
which could be removed by making Thickness have is_Input = True and moving grid processing to before _arg_values is called on inputs.
Thickness
is_Input = True
_arg_values
However, as pending PRs make changes to this code, this should be returned to later to avoid messy merge conflicts.
The text was updated successfully, but these errors were encountered:
mloubout
EdCaunt
No branches or pull requests
Operator._prepare_arguments
currently contains the following lines:which could be removed by making
Thickness
haveis_Input = True
and moving grid processing to before_arg_values
is called on inputs.However, as pending PRs make changes to this code, this should be returned to later to avoid messy merge conflicts.
The text was updated successfully, but these errors were encountered: