From fd684fd1568f2badce4e2163fba93e47c7cb6bcb Mon Sep 17 00:00:00 2001 From: Rebecca Le Date: Sun, 18 Jan 2026 00:56:43 +0800 Subject: [PATCH] chore: Remove unused require statements as picked up by the Elixir 1.20.0-rc.1 compiler --- lib/reactor/dsl/map.ex | 1 - lib/reactor/dsl/template.ex | 1 - lib/reactor/step/around.ex | 2 -- lib/reactor/step/group.ex | 1 - 4 files changed, 5 deletions(-) diff --git a/lib/reactor/dsl/map.ex b/lib/reactor/dsl/map.ex index df5a85d..704f92e 100644 --- a/lib/reactor/dsl/map.ex +++ b/lib/reactor/dsl/map.ex @@ -169,7 +169,6 @@ defmodule Reactor.Dsl.Map do defimpl Dsl.Build do import Reactor.Utils - require Reactor.Argument alias Reactor.Argument alias Spark.{Dsl.Verifier, Error.DslError} diff --git a/lib/reactor/dsl/template.ex b/lib/reactor/dsl/template.ex index a183b95..2e54295 100644 --- a/lib/reactor/dsl/template.ex +++ b/lib/reactor/dsl/template.ex @@ -19,7 +19,6 @@ defmodule Reactor.Dsl.Template do __spark_metadata__: nil alias Reactor.{Builder, Dsl, Step} - require EEx @type t :: %__MODULE__{ arguments: [Dsl.Argument.t()], diff --git a/lib/reactor/step/around.ex b/lib/reactor/step/around.ex index 36afd6a..41e224c 100644 --- a/lib/reactor/step/around.ex +++ b/lib/reactor/step/around.ex @@ -4,8 +4,6 @@ # SPDX-License-Identifier: MIT defmodule Reactor.Step.Around do - require Reactor.Mermaid - @moduledoc """ Wrap the execution of a number of steps in a function. diff --git a/lib/reactor/step/group.ex b/lib/reactor/step/group.ex index 2583ba0..2b646d3 100644 --- a/lib/reactor/step/group.ex +++ b/lib/reactor/step/group.ex @@ -67,7 +67,6 @@ defmodule Reactor.Step.Group do """ use Reactor.Step - require Reactor.Argument alias Reactor.{Argument, Builder, Step} import Reactor.Utils