Skip to content

Commit

Permalink
fix: linter cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Aug 14, 2023
1 parent e2ed682 commit b0a3b6d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,9 @@ func (cc *client) ListFiles(dir string) ([]string, error) {

var filenames []string
err := cc.Walk(".", func(path string, d fs.DirEntry, err error) error {
if err != nil {
return err
}
if d.IsDir() {
return nil
}
Expand Down

0 comments on commit b0a3b6d

Please sign in to comment.