about summary refs log tree commit diff
path: root/app/models
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-02-08 04:36:23 -0500
committerGitHub <noreply@github.com>2023-02-08 10:36:23 +0100
commit0d1f192c54ab65a4a1c938553e5d87be65a966e8 (patch)
tree08d2241a883349ae36b3613029c88acd6b7e4434 /app/models
parent26ac2447b4efc4689295188c5d1cd3d444f28b15 (diff)
Apply Rubocop Performance/BlockGivenWithExplicitBlock (#23441)
* Apply Rubocop Performance/BlockGivenWithExplicitBlock

* Unprefix used block parameter
Diffstat (limited to 'app/models')
-rw-r--r--app/models/trends/history.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/trends/history.rb b/app/models/trends/history.rb
index 03d62103f..83532e7bc 100644
--- a/app/models/trends/history.rb
+++ b/app/models/trends/history.rb
@@ -87,7 +87,7 @@ class Trends::History
   end
 
   def each(&block)
-    if block_given?
+    if block
       (0...7).map { |i| yield(get(i.days.ago)) }
     else
       to_enum(:each)