Skip to content

Commit f1d2a8c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 58d36d0 commit f1d2a8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

linear_algebra/src/gaussian_elimination_pivoting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def solve_linear_system(matrix: np.ndarray) -> np.ndarray:
3737
x_lst: list[float] = []
3838

3939
if num_of_rows != num_of_columns:
40-
raise ValueError("Matrix is not square")
40+
raise ValueError("Matrix is not square")
4141

4242
for column_num in range(num_of_rows):
4343
# Lead element search

0 commit comments

Comments
 (0)