Skip to content

Commit d9cc62f

Browse files
committed
s/IO.inspect/inspect
1 parent 291c789 commit d9cc62f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/algora/workspace/workspace.ex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ defmodule Algora.Workspace do
951951
{:cont, {:ok, [user | users]}}
952952

953953
{:error, reason}, acc ->
954-
Logger.error("Something went wrong fetching user #{IO.inspect(reason)}")
954+
Logger.error("Something went wrong fetching user #{inspect(reason)}")
955955
{:cont, acc}
956956
# {:halt, {:error, reason}}
957957
end)
@@ -984,7 +984,6 @@ defmodule Algora.Workspace do
984984
Enum.uniq_by(users_with_contributions ++ users_marked_synced, & &1.id)
985985
end
986986

987-
988987
@spec mark_users_as_synced(list(String.t()), list(User.t())) :: :ok
989988
defp mark_users_as_synced(users_without_contributions, users) do
990989
if not Enum.empty?(users_without_contributions) do

0 commit comments

Comments
 (0)