From 0c1da29d0c8a57e861b87627a19eaa73ccd4bba8 Mon Sep 17 00:00:00 2001 From: Gabriel Date: Wed, 22 May 2019 14:32:33 -0300 Subject: [PATCH] Add _ to unused args --- Library/Homebrew/formula.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 2c7b3261fd..f656ce300c 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -2360,7 +2360,7 @@ class Formula specs.each { |spec| spec.depends_on(dep) } end - def uses_from_macos(dep, **args) + def uses_from_macos(dep, **_args) depends_on(dep) end