Formatting

This commit is contained in:
Mark Felder 2024-06-04 22:22:41 -04:00
parent 01780b87f1
commit 6702b2b7f9

View file

@ -1,6 +1,6 @@
defmodule Pleroma.Chaos do
def kill_random_worker(pid) do
with true <- Enum.random(0..100) >= 75 do
with true <- Enum.random(0..100) >= 75 do
Process.exit(pid, :kill)
end
end