Conditions | 2 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | """ |
||
46 | @classmethod |
||
47 | def group_apply(cls, fixtures: List['Fixture'], speed: float, *args, **kwargs): |
||
48 | # Position |
||
49 | index = 0 |
||
50 | total = len(fixtures) - 1 |
||
51 | |||
52 | # Iterate over each |
||
53 | for fixture in fixtures: |
||
54 | fixture.add_effect(cls, speed, delay=total * 100, offset=index * 100, *args, **kwargs) |
||
55 | index += 1 |
||
56 |