From ee6461ba9f8958b9f75890e5cdaf2a303bc74083 Mon Sep 17 00:00:00 2001 From: Mike Linksvayer Date: Thu, 28 Dec 2023 12:13:28 -0800 Subject: [PATCH] rubocop Style/RedundantParentheses --- script/check-approval | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/check-approval b/script/check-approval index 4574c2d..453da28 100755 --- a/script/check-approval +++ b/script/check-approval @@ -55,7 +55,7 @@ current = license_ids.include?(license) rows << ['Current license', current] rows << :separator -eligible = (!current && spdx && approved_licenses.include?(license)) +eligible = !current && spdx && approved_licenses.include?(license) rows << ['Eligible', eligible] puts Terminal::Table.new title: "License: #{license}", rows: rows