Skip to content

Commit f90c1f8

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

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

bit_manipulation/is_even.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def is_even(number: int) -> bool:
3030
"""
3131
return number & 1 == 0
3232

33+
3334
def is_even_using_shift_operator(number: int) -> bool:
3435
"""
3536
Returns True if the input integer is even.

0 commit comments

Comments
 (0)