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
None
It will be nice to allow Pythonic None as a valid value for the Type_ argument, so we can do:
Type_
mapdl.nsel(None) # equal to mapdl.nsel("NONE")
Internally it is just:
if type_ is None: type_ = "NONE"
This can be added to a wrapped function.
NA
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the feature
It will be nice to allow Pythonic
None
as a valid value for theType_
argument, so we can do:Steps for implementing the feature
Internally it is just:
This can be added to a wrapped function.
Useful links and references
NA
The text was updated successfully, but these errors were encountered: