about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-02-17 22:30:03 -0500
committerGitHub <noreply@github.com>2023-02-18 04:30:03 +0100
commitd65b2c1924d8ff63c6e8c1b79d678e78e9126df9 (patch)
treeb900699a4b002664c0b19e5564b755cf33b2e650 /lib
parente4f37fad98778b95738a771f720ca0b0eeb6cee8 (diff)
Apply Rubocop Style/RedundantConstantBase (#23463)
Diffstat (limited to 'lib')
-rw-r--r--lib/tasks/statistics.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tasks/statistics.rake b/lib/tasks/statistics.rake
index 82f2b5416..440c309ce 100644
--- a/lib/tasks/statistics.rake
+++ b/lib/tasks/statistics.rake
@@ -13,7 +13,7 @@ namespace :mastodon do
       %w(Validators app/validators),
       %w(Workers app/workers),
     ].each do |name, dir|
-      ::STATS_DIRECTORIES << [name, Rails.root.join(dir)]
+      STATS_DIRECTORIES << [name, Rails.root.join(dir)]
     end
   end
 end