Skip to content

Commit c2225a5

Browse files
committed
gh-116738: Remove forgotten type hint
1 parent 7ffdb6d commit c2225a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_free_threading/test_heapq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def create_random_list(a, b, size):
214214
"""
215215
return [randint(-a, b) for _ in range(size)]
216216

217-
def run_concurrently(self, worker_func, args, nthreads) -> None:
217+
def run_concurrently(self, worker_func, args, nthreads):
218218
"""
219219
Run the worker function concurrently in multiple threads.
220220
"""

0 commit comments

Comments
 (0)