We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c03934 commit f20dc00Copy full SHA for f20dc00
lib/cldr/timezone.ex
@@ -26,7 +26,7 @@ defmodule Cldr.Timezone do
26
end)
27
|> Enum.map(fn {k, v} ->
28
case Cldr.validate_territory(k) do
29
- {:ok, territory} -> {territory, List.flatten(v)}
+ {:ok, territory} -> {territory, Elixir.List.flatten(v)}
30
{:error, _} -> nil
31
end
32
lib/cldr/validity/u.ex
@@ -115,7 +115,7 @@ defmodule Cldr.Validity.U do
115
{k, nil} -> {String.to_atom(k), k}
116
{k, v} -> {String.to_atom(v), k}
117
118
- |> List.flatten()
+ |> Elixir.List.flatten()
119
|> Map.new()
120
121
defp encode_key(unquote(key), value) when value in unquote(Map.keys(inverted_values)) do
0 commit comments