Make main pre-commit clean again

One of my commits merged while pre-commit was in review has broken
this. Sorry!
This commit is contained in:
Tobias Hunger
2022-02-13 11:34:51 +01:00
parent de61f4fe9f
commit 3468308eba
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -22,11 +22,10 @@ end
local config = utils.user_settings()
if type(config.polish) == "function" then
config.polish()
else
error("The polish value in your user configuration must be a function")
error "The polish value in your user configuration must be a function"
end
-- keep this last:
+1 -1
View File
@@ -33,7 +33,7 @@ local config = {
--
-- This function takes no input and AstroVim does not expect it to
-- return anything either.
polish = function() end
polish = function() end,
}
return config