Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
NJichev committed Apr 30, 2024
1 parent db720f8 commit 47b2000
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,11 @@ defmodule Credo.Check.Warning.ApplicationConfigInModuleAttributeTest do

defp error_exists?(errors, error_message, {line_no, column}, trigger) do
Enum.any?(errors, fn
%Credo.Issue{message: ^error_message, line_no: ^line_no, column: ^column, trigger: ^trigger} -> true
_ -> false
%Credo.Issue{message: ^error_message, line_no: ^line_no, column: ^column, trigger: ^trigger} ->
true

_ ->
false
end)
end
end

0 comments on commit 47b2000

Please sign in to comment.