Skip to content

Commit 9b29626

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boolean_algebra/and_gate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def and_gate(input_1: int, input_2: int) -> int:
3535
def n_and_gate(inputs: tuple) -> int:
3636
"""
3737
Calculate AND of a list of input values
38-
38+
3939
>>> n_and_gate((1, 0, 1, 1, 0))
4040
0
4141
"""

0 commit comments

Comments
 (0)