Remove the unnecessary duplicate package import for `encoding/csv` in `modules/csv/csv.go` Fix #16557
This commit is contained in:
parent
3a1332c326
commit
fd39e6dc6a
1 changed files with 2 additions and 3 deletions
|
@ -6,7 +6,6 @@ package csv
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"encoding/csv"
|
|
||||||
stdcsv "encoding/csv"
|
stdcsv "encoding/csv"
|
||||||
"errors"
|
"errors"
|
||||||
"io"
|
"io"
|
||||||
|
@ -97,9 +96,9 @@ func scoreDelimiter(lines []string, delim rune) float64 {
|
||||||
|
|
||||||
// FormatError converts csv errors into readable messages.
|
// FormatError converts csv errors into readable messages.
|
||||||
func FormatError(err error, locale translation.Locale) (string, error) {
|
func FormatError(err error, locale translation.Locale) (string, error) {
|
||||||
var perr *csv.ParseError
|
var perr *stdcsv.ParseError
|
||||||
if errors.As(err, &perr) {
|
if errors.As(err, &perr) {
|
||||||
if perr.Err == csv.ErrFieldCount {
|
if perr.Err == stdcsv.ErrFieldCount {
|
||||||
return locale.Tr("repo.error.csv.invalid_field_count", perr.Line), nil
|
return locale.Tr("repo.error.csv.invalid_field_count", perr.Line), nil
|
||||||
}
|
}
|
||||||
return locale.Tr("repo.error.csv.unexpected", perr.Line, perr.Column), nil
|
return locale.Tr("repo.error.csv.unexpected", perr.Line, perr.Column), nil
|
||||||
|
|
Reference in a new issue