diff --git a/.rubocop_todo/layout/line_length.yml b/.rubocop_todo/layout/line_length.yml
index ed2245f39e0c2840871c22bce7f227b2108de4fe..47127e6459fa1bac00850c61f563ff7492705159 100644
--- a/.rubocop_todo/layout/line_length.yml
+++ b/.rubocop_todo/layout/line_length.yml
@@ -256,7 +256,6 @@ Layout/LineLength:
     - 'app/helpers/sorting_helper.rb'
     - 'app/helpers/ssh_keys_helper.rb'
     - 'app/helpers/startupjs_helper.rb'
-    - 'app/helpers/storage_helper.rb'
     - 'app/helpers/submodule_helper.rb'
     - 'app/helpers/tags_helper.rb'
     - 'app/helpers/timeboxes_helper.rb'
diff --git a/app/helpers/storage_helper.rb b/app/helpers/storage_helper.rb
index a60143db739d64923eedba1b37c72a0f318afa62..669d13c14c286cf8bd11309ff673755f5cb84afa 100644
--- a/app/helpers/storage_helper.rb
+++ b/app/helpers/storage_helper.rb
@@ -21,6 +21,10 @@ def storage_counters_details(statistics)
       counter_uploads: storage_counter(statistics.uploads_size)
     }
 
-    _("Repository: %{counter_repositories} / Wikis: %{counter_wikis} / Build Artifacts: %{counter_build_artifacts} / Pipeline Artifacts: %{counter_pipeline_artifacts} / LFS: %{counter_lfs_objects} / Snippets: %{counter_snippets} / Packages: %{counter_packages} / Uploads: %{counter_uploads}") % counters
+    _(
+      "Repository: %{counter_repositories} / Wikis: %{counter_wikis} / Build Artifacts: %{counter_build_artifacts} / " \
+      "Pipeline Artifacts: %{counter_pipeline_artifacts} / LFS: %{counter_lfs_objects} / " \
+      "Snippets: %{counter_snippets} / Packages: %{counter_packages} / Uploads: %{counter_uploads}"
+    ) % counters
   end
 end