diff options
| author | Geremia Taglialatela <[email protected]> | 2023-04-09 16:47:12 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-04-09 16:47:12 +0200 |
| commit | 3befab6f5713c537f6b90b51c02882273c7f7cc9 (patch) | |
| tree | 44154a028654c8c9989a087052cf5e7641d31f1e /lib/axlsx/workbook/worksheet/sheet_protection.rb | |
| parent | 48f392fb7752f14153126e9d154b4f9e2eef8fa7 (diff) | |
| download | caxlsx-3befab6f5713c537f6b90b51c02882273c7f7cc9.tar.gz caxlsx-3befab6f5713c537f6b90b51c02882273c7f7cc9.zip | |
Fix Layout/ArgumentAlignment offenses
```
rubocop --only Layout/ArgumentAlignment -a
```
Diffstat (limited to 'lib/axlsx/workbook/worksheet/sheet_protection.rb')
| -rw-r--r-- | lib/axlsx/workbook/worksheet/sheet_protection.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/axlsx/workbook/worksheet/sheet_protection.rb b/lib/axlsx/workbook/worksheet/sheet_protection.rb index 68202f08..b36f8875 100644 --- a/lib/axlsx/workbook/worksheet/sheet_protection.rb +++ b/lib/axlsx/workbook/worksheet/sheet_protection.rb @@ -31,12 +31,12 @@ module Axlsx end boolean_attr_accessor :sheet, :objects, :scenarios, :format_cells, :format_columns, :format_rows, - :insert_columns, :insert_rows, :insert_hyperlinks, :delete_columns, :delete_rows, - :select_locked_cells, :sort, :auto_filter, :pivot_tables, :select_unlocked_cells + :insert_columns, :insert_rows, :insert_hyperlinks, :delete_columns, :delete_rows, + :select_locked_cells, :sort, :auto_filter, :pivot_tables, :select_unlocked_cells serializable_attributes :sheet, :objects, :scenarios, :format_cells, :format_columns, :format_rows, - :insert_columns, :insert_rows, :insert_hyperlinks, :delete_columns, :delete_rows, - :select_locked_cells, :sort, :auto_filter, :pivot_tables, :select_unlocked_cells, :salt, :password + :insert_columns, :insert_rows, :insert_hyperlinks, :delete_columns, :delete_rows, + :select_locked_cells, :sort, :auto_filter, :pivot_tables, :select_unlocked_cells, :salt, :password # Specifies the salt which was prepended to the user-supplied password before it was hashed using the hashing algorithm # @return [String] |
