Skip to content

Commit c78fccb

Browse files
authored
Merge pull request #96 from CausalInferenceLab/fix/remove-generic-type-from-parallel-process
refactor: parallel_process 함수의 타입 매개변수 제거
2 parents 3f414cb + 16bb10c commit c78fccb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llm_utils/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
R = TypeVar("R")
1212

1313

14-
def parallel_process[T, R](
14+
def parallel_process(
1515
items: Iterable[T],
1616
process_fn: Callable[[T], R],
1717
max_workers: int = 8,

0 commit comments

Comments
 (0)