Fix Style/RedundantNext type of Ameba issues

This commit is contained in:
Sijawusz Pur Rahnama 2026-01-11 23:18:31 +01:00
parent 9aec157453
commit dc7891cddb
2 changed files with 1 additions and 4 deletions

View file

@ -31,9 +31,6 @@ Lint/SpecFilename:
# Style
#
Style/RedundantNext:
Enabled: false
Style/ParenthesesAroundCondition:
Enabled: false

View file

@ -41,7 +41,7 @@ struct YoutubeConnectionPool
)
DB::Pool(HTTP::Client).new(options) do
next make_client(url, force_resolve: true)
make_client(url, force_resolve: true)
end
end
end