fix(growth): ignore enum result explicitly
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
2024-06-10 19:24:41 +00:00
parent 06b35cbceb
commit 0ac434c61d

View File

@@ -49,9 +49,10 @@ defmodule Growth.Indicators.Load do
@doc false
def start_link(_) do
Enum.map(@measure_to_score, fn {_, measure} ->
create_ets(measure)
end)
_ =
Enum.map(@measure_to_score, fn {_, measure} ->
create_ets(measure)
end)
Task.start_link(__MODULE__, :all, [])
end