Skip to content

Commit d0e52da

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

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

searches/linear_search.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
For manual testing run:
88
python3 linear_search.py
99
"""
10-
from typing import Any
10+
11+
from typing import Any
12+
1113

1214
def linear_search(sequence: list[Any], target: Any) -> int:
1315
"""A pure Python implementation of a linear search algorithm

0 commit comments

Comments
 (0)