From e42ab2ed192ba570121fdf6bc6207ebe04873b4c Mon Sep 17 00:00:00 2001 From: nickbair Date: Sun, 1 Sep 2024 12:22:31 -0600 Subject: [PATCH] Remove todos --- README.md | 3 ++- lib/code_generator.ex | 5 ----- test/api_test.exs | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4a74ec0..b677bc8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # ExOanda +Unofficial Elixir SDK for the Oanda API. -**TODO: Add description** +Note - this is highly experimental and in active development. ## Installation diff --git a/lib/code_generator.ex b/lib/code_generator.ex index f4fdee4..91a0370 100644 --- a/lib/code_generator.ex +++ b/lib/code_generator.ex @@ -1,11 +1,6 @@ defmodule ExOanda.CodeGenerator do @moduledoc false - # TODO: - # - Add tests - # - Generate models - # - Add streaming - alias ExOanda.Config defmacro __using__(_opts) do diff --git a/test/api_test.exs b/test/api_test.exs index 4ffa922..39213fa 100644 --- a/test/api_test.exs +++ b/test/api_test.exs @@ -58,7 +58,7 @@ defmodule ExOandaTest.API do end test "returns the request unchanged when telemetry key is missing", %{req: req} do - conn = %Conn{token: "abc",} + conn = %Conn{token: "abc"} assert API.maybe_attach_telemetry(req, conn) == req end end