We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f080f2 commit 497e78dCopy full SHA for 497e78d
1 file changed
trainings/files/read.go
@@ -2,7 +2,6 @@ package files
2
3
import (
4
"os"
5
- "path"
6
"path/filepath"
7
8
"github.com/pkg/errors"
@@ -72,7 +71,7 @@ func isSolutionFile(info os.FileInfo) bool {
72
71
if info.Name() == "go.work" {
73
return true
74
}
75
- if path.Ext(info.Name()) == ".sql" {
+ if filepath.Ext(info.Name()) == ".sql" {
76
77
78
0 commit comments