Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacobbrewer1 committed Mar 21, 2024
1 parent 802e3bd commit fa05f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/services/generation/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func LoadSQL(paths ...string) ([]*models.Table, error) {
return nil, err
}
for _, m := range matches {
matchedTables := make([]*models.Table, 0)
var matchedTables []*models.Table
if fi, err := os.Stat(m); err != nil {
return nil, err
} else if fi.IsDir() {
Expand Down

0 comments on commit fa05f6b

Please sign in to comment.