File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -176,15 +176,14 @@ def execute(self, operations: list[Operation]) -> int:
176176 self ._executor .submit (self ._execute_operation , operation )
177177 )
178178
179+ def _serialize (
180+ repository_serial_operations : list [Operation ],
181+ ) -> None :
182+ for operation in repository_serial_operations :
183+ self ._execute_operation (operation )
184+
179185 # For each git repository, execute all operations serially
180186 for repository_git_operations in serial_git_operations .values ():
181-
182- def _serialize (
183- repository_serial_operations : list [Operation ],
184- ) -> None :
185- for operation in repository_serial_operations :
186- self ._execute_operation (operation )
187-
188187 tasks .append (
189188 self ._executor .submit (
190189 _serialize ,
You can’t perform that action at this time.
0 commit comments