There was an error while loading. Please reload this page.
1 parent 84a32f3 commit 52ddb38Copy full SHA for 52ddb38
1 file changed
bit_manipulation/binary_and_operator.py
@@ -68,7 +68,7 @@ def binary_and(a: int, b: int) -> str:
68
>>> binary_and(10, "1")
69
Traceback (most recent call last):
70
...
71
- TypeError: both inputs must be integers
+ TypeError: inputs must be integers
72
"""
73
if not isinstance(a, int) or not isinstance(b, int):
74
raise TypeError("inputs must be integers")
0 commit comments