Skip to content

Commit 99753a2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6b6c29f commit 99753a2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

maths/wronskian_second_order_de.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ def analyze_differential_equation(
123123
"""
124124
# Case 1: Not a valid DE
125125
if coefficient_a == 0 and coefficient_b == 0:
126-
print("Error: Both 'a' and 'b' cannot be zero. Not a valid differential equation.")
126+
print(
127+
"Error: Both 'a' and 'b' cannot be zero. Not a valid differential equation."
128+
)
127129
return
128130

129131
# Case 2: First-order DE

0 commit comments

Comments
 (0)