Skip to content

Commit

Permalink
Merge pull request #113 from satyasyahputra/fix-warnings
Browse files Browse the repository at this point in the history
Fix warnings
  • Loading branch information
jsonkenl authored Jan 18, 2023
2 parents 0005f65 + 30cb718 commit 6c70655
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lib/xlsxir.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ defmodule Xlsxir do
use Application

def start(_type, _args) do
import Supervisor.Spec

children = [
worker(Xlsxir.StateManager, [])
%{id: Xlsxir.StateManager, start: {Xlsxir.StateManager, :start_link, []}, type: :worker}
]

opts = [strategy: :one_for_one, name: __MODULE__]
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule Xlsxir.Mixfile do
def application do
[
mod: {Xlsxir, []},
extra_applications: [:logger]
extra_applications: [:logger, :crypto]
]
end

Expand Down

0 comments on commit 6c70655

Please sign in to comment.