Skip to content

Commit 2a1f67a

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

boolean_algebra/imply_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def recursive_imply_list(input_list: list[int]) -> int:
7777
1
7878
"""
7979
if len(input_list) < 2:
80-
raise ValueError('Input list must contain at least two elements')
80+
raise ValueError("Input list must contain at least two elements")
8181
first_implication = imply_gate(input_list[0], input_list[1])
8282
if len(input_list) == 2:
8383
return first_implication

0 commit comments

Comments
 (0)