Skip to content

Commit f4fcf5f

Browse files
#709 flake8 and changelog
1 parent 71b68ee commit f4fcf5f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
## Optimizations
3838

39+
- Now simplifying objects that are constant as soon as they are created ([#801](https://github.com/pybamm-team/PyBaMM/pull/801))
3940
- Simplified solver interface ([#800](https://github.com/pybamm-team/PyBaMM/pull/800))
4041
- Added caching for shape evaluation, used during discretisation ([#780](https://github.com/pybamm-team/PyBaMM/pull/780))
4142
- Added an option to skip model checks during discretisation, which could be slow for large models ([#739](https://github.com/pybamm-team/PyBaMM/pull/739))

tests/unit/test_parameters/test_parameter_values.py

-3
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,6 @@ def test_process_function_parameter(self):
316316
processed_func = parameter_values.process_symbol(func)
317317
self.assertEqual(processed_func.evaluate(u={"func": 13}), 13)
318318

319-
320-
321-
322319
def test_process_inline_function_parameters(self):
323320
def D(c):
324321
return c ** 2

0 commit comments

Comments
 (0)