Browse Source

Apply Rubocop Performance/StringIdentifierArgument (#23444)

closed-social-glitch-2
Nick Schonning 1 year ago
committed by GitHub
parent
commit
203739dd3a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      app/lib/scope_transformer.rb
  2. +2
    -2
      lib/mastodon/statuses_cli.rb

+ 1
- 1
app/lib/scope_transformer.rb View File

@ -28,7 +28,7 @@ class ScopeTransformer < Parslet::Transform
def merge!(other_scope)
raise ArgumentError unless other_scope.namespace == namespace && other_scope.term == term
@access.concat(other_scope.instance_variable_get('@access'))
@access.concat(other_scope.instance_variable_get(:@access))
@access.uniq!
@access.sort!

+ 2
- 2
lib/mastodon/statuses_cli.rb View File

@ -93,7 +93,7 @@ module Mastodon
c.table_name = 'statuses_to_be_deleted'
end
Object.const_set('StatusToBeDeleted', klass)
Object.const_set(:StatusToBeDeleted, klass)
scope = StatusToBeDeleted
processed = 0
@ -175,7 +175,7 @@ module Mastodon
c.table_name = 'conversations_to_be_deleted'
end
Object.const_set('ConversationsToBeDeleted', klass)
Object.const_set(:ConversationsToBeDeleted, klass)
scope = ConversationsToBeDeleted
processed = 0

Loading…
Cancel
Save