Skip to content

Commit

Permalink
Fix S3 unused var warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tfwright committed Aug 12, 2024
1 parent 60133e9 commit 169d9d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/supplement/storages/s3.ex
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ defmodule Capsule.Storages.S3 do
end

@impl Storage
def delete(id, opts \\ []) do
def delete(id, _opts \\ []) do
{bucket, key} = parse_id(id)

bucket
Expand All @@ -43,7 +43,7 @@ defmodule Capsule.Storages.S3 do
end

@impl Storage
def read(id, opts \\ []) do
def read(id, _opts \\ []) do
{bucket, key} = parse_id(id)

bucket
Expand All @@ -56,7 +56,7 @@ defmodule Capsule.Storages.S3 do
end

@impl Storage
def stream!(id, opts \\ []) do
def stream!(id, _opts \\ []) do
{bucket, key} = parse_id(id)

bucket
Expand Down

0 comments on commit 169d9d7

Please sign in to comment.