From e43a40805d58aca1adfdce9945778d1779682679 Mon Sep 17 00:00:00 2001 From: "Rachel Fae Fox (foxiepaws)" Date: Wed, 31 Jul 2019 15:12:12 -0400 Subject: [PATCH] def and end accidentally got removed. --- lib/hunter/api/http_client.ex | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/hunter/api/http_client.ex b/lib/hunter/api/http_client.ex index fc05550..938764e 100644 --- a/lib/hunter/api/http_client.ex +++ b/lib/hunter/api/http_client.ex @@ -260,10 +260,11 @@ defmodule Hunter.Api.HTTPClient do |> request!(:list, :get, [], conn) end - get_list_accounts(conn, id) do + def get_list_accounts(conn, id) do "/api/v1/lists/#{id}/accounts" |> process_url(conn) |> request!(:list, :get, [], conn) + end def instance_info(conn) do "/api/v1/instance"