Fix linter

This commit is contained in:
Miguel de la Cruz 2020-02-29 00:39:26 +01:00
parent 167dc7aae8
commit d7a4b25950
2 changed files with 6 additions and 6 deletions

View file

@ -28,7 +28,7 @@ func ReadConfig() (*Config, error) {
}
if _, err := os.Stat(configPath); err != nil {
return &Config{}, nil
return &Config{}, nil
}
fileContents, err := ioutil.ReadFile(configPath)