Skip to content

Commit

Permalink
Makes linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ksysoev committed Dec 31, 2023
1 parent 38e8ff4 commit dfd3c35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/command/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ func NewSleepCommand(duration time.Duration) *SleepCommand {

// Execute executes the SleepCommand and returns an Executer and an error.
// It sleeps for the specified duration.
func (c *SleepCommand) Execute(exCtx ExecutionContext) (Executer, error) {
func (c *SleepCommand) Execute(_ ExecutionContext) (Executer, error) {
time.Sleep(c.duration)

return nil, nil
Expand Down

0 comments on commit dfd3c35

Please sign in to comment.