Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
legoguy1000 committed Jan 21, 2024
1 parent 44350f9 commit 7f1cb55
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/frc/lib/util/swerve/SwerveModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import com.ctre.phoenix6.controls.VelocityVoltage;
import com.ctre.phoenix6.hardware.CANcoder;
import com.ctre.phoenix6.hardware.TalonFX;
import com.ctre.phoenix6.mechanisms.swerve.SwerveModuleConstants;
import edu.wpi.first.math.controller.SimpleMotorFeedforward;
import edu.wpi.first.math.geometry.Rotation2d;
import edu.wpi.first.math.kinematics.SwerveModulePosition;
Expand Down Expand Up @@ -43,7 +42,10 @@ public class SwerveModule {
* Swerve Module
*
* @param moduleNumber Module Number
* @param moduleConstants {@link SwerveModuleConstants} for the Swerve Module
* @param driveMotorID CAN ID of the Drive Motor
* @param angleMotorID CAN ID of the Angle Motor
* @param cancoderID CAN ID of the CANCoder
* @param angleOffset Angle Offset of the CANCoder to align the wheels
*/
public SwerveModule(int moduleNumber, int driveMotorID, int angleMotorID, int cancoderID,
Rotation2d angleOffset) {
Expand Down

0 comments on commit 7f1cb55

Please sign in to comment.