-
-
Notifications
You must be signed in to change notification settings - Fork 607
New issue
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
Update simulation class private members #4319
Update simulation class private members #4319
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't see any problem with doing this but what is wrong with the other way out of interest?
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #4319 +/- ##
========================================
Coverage 99.50% 99.50%
========================================
Files 289 289
Lines 22146 22146
========================================
Hits 22037 22037
Misses 109 109 ☔ View full report in Codecov by Sentry. |
Fair question, I'd say it mainly removes confusion for developers and users looking through the codebase. Since the attributes I've corrected were using the property, we're presenting these objects as modifiable outside the class without issues, which is not the case (or if it is, we can remove them as private attrs and the corresponding properties) while also having the private attributes used elsewhere in the class (i.e. mixing them up throughout the class). This actually came from a PyBOP PR, as we are using a few of the simulation class methods during build. One of the attributes ( As a side note, PyBOP is moving towards doing this automatically with ruff: pybop-team/PyBOP#435 I suspect doing something similar would be beneficial for PyBaMM as well; however, it takes a bit of work to fix everything at the beginning.. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the info, definitely sounds like a useful check to include
* fix: use private attributes instead of property * fix: uncommented line
Description
A small PR to remove usage of the simulation class properties, within the class.
Fixes # (issue)
Type of change
Please add a line in the relevant section of CHANGELOG.md to document the change (include PR #) - note reverse order of PR #s. If necessary, also add to the list of breaking changes.
Key checklist:
$ pre-commit run
(or$ nox -s pre-commit
) (see CONTRIBUTING.md for how to set this up to run automatically when committing locally, in just two lines of code)$ python run-tests.py --all
(or$ nox -s tests
)$ python run-tests.py --doctest
(or$ nox -s doctests
)You can run integration tests, unit tests, and doctests together at once, using
$ python run-tests.py --quick
(or$ nox -s quick
).Further checks: