Skip to content

Commit

Permalink
fix: fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalcaliskan committed Jan 20, 2024
1 parent 6583ccf commit 9a1d0a9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions internal/ipc/ipc.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,6 @@ func handleListCommand(conn net.Conn) error {

func Cleanup(path string) error {
// Perform any cleanup and shutdown tasks here
if err := os.Remove(path); err != nil {
return err
}

return nil
return os.Remove(path)
}

0 comments on commit 9a1d0a9

Please sign in to comment.