Skip to content

Commit

Permalink
fix linter lll
Browse files Browse the repository at this point in the history
  • Loading branch information
Hermsi1337 committed Mar 20, 2020
1 parent dfb7171 commit 7e2734f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pkg/restic/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,11 @@ func Check(ctx context.Context, flags *CheckFlags) ([]byte, error) {
}

// Forget executes "restic forget"
func Forget(ctx context.Context, globalOpts *GlobalOptions, forgetOpts *ForgetOptions) (removedSnapshots []string, output []byte, err error) {
func Forget(
ctx context.Context, globalOpts *GlobalOptions, forgetOpts *ForgetOptions,
) (
removedSnapshots []string, output []byte, err error,
) {
forgetOpts.Flags.Compact = true // make sure compact mode is enabled to parse result correctly

var args []string
Expand Down

0 comments on commit 7e2734f

Please sign in to comment.