We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8edf1ac commit e31b7d1Copy full SHA for e31b7d1
controllers/algae_shooter.py
@@ -36,10 +36,8 @@ def shoot(self) -> None:
36
if self.reef_intake.is_executing:
37
return
38
if (
39
- self.use_ballistics
40
- and not self.ballistics_component.is_in_range()
41
- or not self.ballistics_component.is_aligned()
42
- ):
+ self.use_ballistics and not self.ballistics_component.is_in_range()
+ ) or not self.ballistics_component.is_aligned():
43
44
self.engage()
45
0 commit comments