From 970b872082f6b3465343df9d3ef81fa092baaa5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Sat, 14 Sep 2024 19:31:51 +0200 Subject: [PATCH] Trim whitespace --- lib/kino_db/connection_cell.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/kino_db/connection_cell.ex b/lib/kino_db/connection_cell.ex index dc84bf4..79316c8 100644 --- a/lib/kino_db/connection_cell.ex +++ b/lib/kino_db/connection_cell.ex @@ -470,9 +470,9 @@ defmodule KinoDB.ConnectionCell do {ReqAthena, ~s|{:req_athena, "~> 0.1"}|}, {Explorer, ~s|{:explorer, "~> 0.9"}|} ] - + deps = for {module, dep} <- deps, not Code.ensure_loaded?(module), do: dep - + if deps != [] do Enum.join(deps, ", ") end