1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-09 00:00:02 +01:00

Fix import ordering.

This commit is contained in:
Martin Smith 2025-02-28 19:30:56 +00:00
parent 67f91be8d0
commit 0ea387f4ec
4 changed files with 4 additions and 6 deletions

View file

@ -6,6 +6,7 @@ import (
"fmt"
"io"
"os"
"os/exec"
"path/filepath"
"runtime"
"strconv"
@ -38,8 +39,6 @@ import (
"github.com/restic/restic/internal/errors"
"os/exec"
"golang.org/x/term"
)

View file

@ -1,6 +1,7 @@
package restic
import (
"bytes"
"encoding/json"
"fmt"
"os"
@ -13,8 +14,6 @@ import (
"github.com/restic/restic/internal/errors"
"bytes"
"github.com/restic/restic/internal/debug"
)

View file

@ -1,8 +1,9 @@
package restic
import (
rtest "github.com/restic/restic/internal/test"
"testing"
rtest "github.com/restic/restic/internal/test"
)
func TestTagLists_Flatten(t *testing.T) {

View file

@ -4,7 +4,6 @@ import (
"bytes"
"io"
"strings"
"text/template"
"github.com/restic/restic/internal/ui"