ansys / pyfluent

Pythonic interface to Ansys Fluent
https://fluent.docs.pyansys.com
MIT License
265 stars 41 forks source link

fix: Remove exit from settings. #3300

Closed prmukherj closed 2 weeks ago

prmukherj commented 2 weeks ago

Remove 'exit' from solver.settings in PyFluent exposure since we have a well documented way of exiting in PyFluent: solver.exit(). It solves a bug arising from solver.settings.exit() as well.

Earlier:

solver.settings.exit()

Now:

"exit" not present in dir(solver.settings) and using it raises an attribute error.