From 7e771e440a575595eb0331a38ec875d53c2e7be9 Mon Sep 17 00:00:00 2001 From: Felix Penzlin Date: Thu, 24 Apr 2025 17:44:18 +0200 Subject: [PATCH] replace deprecated List.zip with Enum.zip --- lib/pdf/table.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pdf/table.ex b/lib/pdf/table.ex index 31585a4..be4438a 100644 --- a/lib/pdf/table.ex +++ b/lib/pdf/table.ex @@ -242,7 +242,7 @@ defmodule Pdf.Table do |> Enum.max() end) end) - |> List.zip() + |> Enum.zip() # TODO: I don't know how efficient it is to work with tuples and back to lists # It may be good to do a zip/1 that returns a list of lists again |> Enum.map(&Tuple.to_list/1)