Skip to content

Commit

Permalink
Commit lint fixes from standard v1.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura Porter committed Jan 3, 2024
1 parent 84be0b0 commit 830c97b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/api/base_api_model.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def attributes=(hash)
value = hash.with_indifferent_access.dig(*split_access_path)
next if value.nil?

send("#{attribute_name}=", value)
send(:"#{attribute_name}=", value)
end
end

Expand Down

0 comments on commit 830c97b

Please sign in to comment.