Use Enum.any? to ensure we return true if there are results
This commit is contained in:
parent
a02eb88396
commit
4aad066091
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ defp dump_group(group) when is_atom(group) do
|
|||
defp group_exists?(group) do
|
||||
group
|
||||
|> ConfigDB.get_all_by_group()
|
||||
|> Enum.empty?()
|
||||
|> Enum.any?()
|
||||
end
|
||||
|
||||
defp maybe_atomize(arg) when is_atom(arg), do: arg
|
||||
|
|
Loading…
Reference in a new issue