From de3908b03c7cf8699236b364553c475c313388ad Mon Sep 17 00:00:00 2001 From: Tyler Davis Date: Mon, 4 Nov 2024 13:08:29 -0600 Subject: [PATCH] change raising param to assert_solvable in example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2f03bf4..4c9cd6d 100644 --- a/README.md +++ b/README.md @@ -286,8 +286,8 @@ puzzle.solve().show_full() # +-------+-------+-------+ ``` -If you wish to raise an `UnsolvableSudoku` error when the board is invalid pass a `raising=True` parameter: +If you wish to raise an `UnsolvableSudoku` error when the board is invalid pass a `assert_solvable=True` parameter: ```py -puzzle.solve(raising=True) +puzzle.solve(assert_solvable=True) ```