From 8af4d77c0546a889b4644d645bc6f9d22ea29b6e Mon Sep 17 00:00:00 2001 From: Walter Dolce Date: Wed, 20 Feb 2019 17:23:11 +0000 Subject: [PATCH] Fix issues caught by Rubocop Signed-Off-By: Walter Dolce --- libraries/google_organizations.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/google_organizations.rb b/libraries/google_organizations.rb index c31f3f614..a0f602135 100644 --- a/libraries/google_organizations.rb +++ b/libraries/google_organizations.rb @@ -34,8 +34,7 @@ def fetch_data @organizations.organizations.map do |organization| organizations_rows += [{ name: organization.name, display_name: organization.display_name, - lifecycle_state: organization.lifecycle_state, - }] + lifecycle_state: organization.lifecycle_state }] end next_page = @organizations.next_page_token break unless next_page