mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
remove unused args
Signed-off-by: Sathish <sbabu@progress.com>
This commit is contained in:
parent
4098fc2f93
commit
01811074e8
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ class LazyLoader < Inspec.resource(1)
|
|||
filter_table_generator.add(:lazy_6s, field: :lazy_6, lazy_instance: :increment_lazy_6 )
|
||||
filter_table_generator.connect(self, :plain_data)
|
||||
|
||||
def increment_lazy_6(row, crit, table)
|
||||
def increment_lazy_6(row, _crit, _table)
|
||||
# BUG: self here is different every time this is called, and appears not to be initialized
|
||||
row[:lazy_6] = (self.lazy_6_call_count += 1)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue