Skip to content

Commit

Permalink
Fix gofmt
Browse files Browse the repository at this point in the history
Signed-off-by: Siddhesh Ghadi <[email protected]>
  • Loading branch information
svghadi committed Nov 8, 2024
1 parent ba4651d commit ea62b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/gitfs/gitfs.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func (g gitFS) Walk(path string, walkFn filepath.WalkFunc) error {
}

// ReadDir implementation for fs.FileSystem
func (g gitFS) ReadDir(path string) ([]string, error) {
func (g gitFS) ReadDir(path string) ([]string, error) {
return []string{}, errNotSupported("ReadDir")
}

Expand Down

0 comments on commit ea62b42

Please sign in to comment.