From 2c2d78f7540a6b75586c68f6c28ec4c4e0534a76 Mon Sep 17 00:00:00 2001 From: Emanuele DelBono Date: Thu, 2 Nov 2023 16:50:15 +0100 Subject: [PATCH] removed unused require --- lib/chapter_05.ex | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/chapter_05.ex b/lib/chapter_05.ex index c9ebea9..d9a19d7 100644 --- a/lib/chapter_05.ex +++ b/lib/chapter_05.ex @@ -1,6 +1,4 @@ defmodule LittleAlchemist.Chapter05 do - import LittleAlchemist.Chapter01 - def rember_star(_, []), do: [] def rember_star(a, [a | t]), do: rember_star(a, t) def rember_star(a, [h | t]) when is_atom(h), do: [h | rember_star(a, t)]