diff options
| author | Mike McQuaid | 2016-09-17 15:32:44 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2016-09-17 16:14:13 +0100 |
| commit | 3982950e6106d45811a396a6a7478eeeee2817d7 (patch) | |
| tree | 3bc809f42e4356c89f4ff3508bbf0e84cd5d4d41 /Library/Homebrew/requirements/python_requirement.rb | |
| parent | 6693915399a5d9f1f09255c5008d2cc1209f7662 (diff) | |
| download | brew-3982950e6106d45811a396a6a7478eeeee2817d7.tar.bz2 | |
rubocop --auto-correct all hash-rocket usage.
Diffstat (limited to 'Library/Homebrew/requirements/python_requirement.rb')
| -rw-r--r-- | Library/Homebrew/requirements/python_requirement.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/requirements/python_requirement.rb b/Library/Homebrew/requirements/python_requirement.rb index 2800f52b0..478f6286e 100644 --- a/Library/Homebrew/requirements/python_requirement.rb +++ b/Library/Homebrew/requirements/python_requirement.rb @@ -5,7 +5,7 @@ class PythonRequirement < Requirement default_formula "python" cask "python" - satisfy :build_env => false do + satisfy build_env: false do python = which_python next unless python version = python_short_version @@ -58,7 +58,7 @@ class Python3Requirement < PythonRequirement default_formula "python3" cask "python3" - satisfy(:build_env => false) { which_python } + satisfy(build_env: false) { which_python } def python_binary "python3" |
