Skip to content

Commit

Permalink
fix long text lines for format
Browse files Browse the repository at this point in the history
fix long lines for pep8 format
  • Loading branch information
js1tr3 committed Feb 23, 2023
1 parent 6a766d2 commit b59362f
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,15 @@ def solve(self, inputs):
if inputs.pop("V_min", None) is not None:
warnings.warn(
"V_min has been removed from the inputs. "
"The 'Open circuit potential at 0% SOC [V]' parameter is now used automatically.",
"The 'Open circuit potential at 0% SOC [V]' "
"parameter is now used automatically.",
DeprecationWarning,
)
if inputs.pop("V_max", None) is not None:
warnings.warn(
"V_max has been removed from the inputs. "
"The 'Open circuit potential at 100% SOC [V]' parameter is now used automatically.",
"The 'Open circuit potential at 100% SOC [V]' "
"parameter is now used automatically.",
DeprecationWarning,
)
ics = self._set_up_solve(inputs)
Expand Down

0 comments on commit b59362f

Please sign in to comment.