Move formatting to gofumpt (from gofmt)

This commit is contained in:
2025-05-04 00:43:01 +02:00
parent d8092fc9d5
commit e4923b500a
3 changed files with 7 additions and 4 deletions

View File

@ -110,7 +110,7 @@ func FindDirectories(dbPath string) (*AppPaths, error) {
// CreateDirectories ensures all application managed directories are created
func CreateDirectories(paths *AppPaths) error {
err := os.MkdirAll(filepath.Dir(paths.DatabaseFile), 0750)
err := os.MkdirAll(filepath.Dir(paths.DatabaseFile), 0o750)
if err != nil {
return err
}