Skip to content

Commit 0df40e0

Browse files
committed
Fix wrong indentation
Wrong indentation in multithreading block caused only one process to run.
1 parent b828278 commit 0df40e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

collect_stata/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ def parallel_run(self) -> None:
138138
)
139139
process = Process(target=self._run, args=[file, file_de])
140140

141-
processes.append(process)
142-
process.start()
141+
processes.append(process)
142+
process.start()
143143

144144
# complete the processes
145145
for process in processes:

0 commit comments

Comments
 (0)