Commit 482af26
committed
fix: process video bug on unused else
The loop never uses break, so the else clause always executes.
However, since it iterates over a generator, the generator is already exhausted after the first pass... so the else block would iterate over nothing.
So, i believe the 'else' is redundant.1 parent 171687f commit 482af26
1 file changed
+0
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
249 | 249 | | |
250 | 250 | | |
251 | 251 | | |
252 | | - | |
253 | | - | |
254 | | - | |
255 | | - | |
256 | 252 | | |
257 | 253 | | |
258 | 254 | | |
| |||
0 commit comments