Skip to content

Commit de094fe

Browse files
committed
Fix rubocop failures
1 parent 1d432df commit de094fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/aws-record/record/item_operations.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def _invalid_record?(_opts)
244244
end
245245
end
246246

247-
def _perform_save(opts)
247+
def _perform_save(opts) # rubocop:disable Naming/PredicateMethod
248248
force = opts.delete(:force)
249249
expect_new = expect_new_item?
250250
if force

lib/aws-record/record/table_config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def _create_table_opts
347347
opts
348348
end
349349

350-
def _add_global_secondary_index_throughput(opts, resp_gsis)
350+
def _add_global_secondary_index_throughput(opts, resp_gsis) # rubocop:disable Naming/PredicateMethod
351351
gsis = resp_gsis.map(&:index_name)
352352
gsi_updates = []
353353
gsis.each do |index_name|

0 commit comments

Comments
 (0)