Skip to content

Commit

Permalink
Lint cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
billknopfjr committed Mar 4, 2025
1 parent d5eaf63 commit 92017a7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/team/gif/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public static final class Climber {
public static final double CLIMB_PERCENT = 0.75;
public static final double FORWARD_SOFT_LIMIT = 354; //332;
public static final double REVERSE_SOFT_LIMIT = 175;
public static final double PISTON_DEPLOY_POS = FORWARD_SOFT_LIMIT;
public static final double PISTON_DEPLOY_POS = FORWARD_SOFT_LIMIT - 10;
public static final double DRIVE_SPEED_MPS = 0.1; //Speed to drive while climbing in meters per second
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
package team.gif.robot.commands.shooter;

import edu.wpi.first.wpilibj2.command.Command;
import edu.wpi.first.wpilibj2.command.ParallelDeadlineGroup;
import edu.wpi.first.wpilibj2.command.ParallelRaceGroup;
import edu.wpi.first.wpilibj2.command.SequentialCommandGroup;
import edu.wpi.first.wpilibj2.command.WaitCommand;
import team.gif.lib.drivePace;
import team.gif.robot.Constants;
import team.gif.robot.Robot;
import team.gif.robot.commands.drivetrain.ShortDriveAway;
import team.gif.robot.commands.drivetrain.StopModules;
import team.gif.robot.commands.elevator.SetElevatorPosition;

public class AutoDriveAndShoot extends Command {
Expand Down

0 comments on commit 92017a7

Please sign in to comment.