Skip to content

Commit b7d8d7f

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bit_manipulation/multibit_manipulation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def multibit_set(bint: int, index: int, bit_len: int, value: int) -> int:
189189
if bint < 0 or index < 0 or bit_len < 0 or value < 0:
190190
raise ValueError("All input values must be positive integers.")
191191
if bit_length(value) > bit_len:
192-
msg =
192+
msg =
193193
raise ValueError(
194194
"Bit length of value can not be greater than specified bit length."
195195
)

0 commit comments

Comments
 (0)