Skip to content

Commit c4fb2b3

Browse files
committed
fix warnings
1 parent ae5d482 commit c4fb2b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/excelerator/phoenix.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ defmodule Excelerator.Phoenix do
1717
1818
"""
1919

20-
defmacro __using__(options) do
20+
defmacro __using__(_options) do
2121
quote do
2222
def xls(conn, template, assigns, opts \\ []) do
2323
excel_data = view_module(conn).render(template, assigns)

lib/excelerator/workbook.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ defmodule Excelerator.Workbook do
3333
end
3434
end
3535

36-
defmacro row(do: {_, _, statements} = content) do
36+
defmacro row(do: {_, _, statements}) do
3737
quote do
3838
{:Row, unquote(statements)}
3939
end

0 commit comments

Comments
 (0)