diff options
| author | Geremia Taglialatela <[email protected]> | 2023-04-07 23:40:27 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-04-07 23:40:27 +0200 |
| commit | fc73023ea783ff7fdeb11ac903baa9142c98cd1c (patch) | |
| tree | d85a68bc5155f06ad164f33d0b22065d6f9bb06c /lib | |
| parent | 6ddcc4588013dfa46fe34a235163dad2b66bdc4c (diff) | |
| download | caxlsx-fc73023ea783ff7fdeb11ac903baa9142c98cd1c.tar.gz caxlsx-fc73023ea783ff7fdeb11ac903baa9142c98cd1c.zip | |
Fix Layout/FirstArrayElementIndentation offense
```
rubocop --only Layout/FirstArrayElementIndentation -a
```
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/axlsx/package.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/axlsx/package.rb b/lib/axlsx/package.rb index 29f72d5c..ed73397a 100644 --- a/lib/axlsx/package.rb +++ b/lib/axlsx/package.rb @@ -211,11 +211,11 @@ module Axlsx # @private def parts parts = [ - {:entry => "xl/#{STYLES_PN}", :doc => workbook.styles, :schema => SML_XSD}, - {:entry => CORE_PN, :doc => @core, :schema => CORE_XSD}, - {:entry => APP_PN, :doc => @app, :schema => APP_XSD}, - {:entry => WORKBOOK_RELS_PN, :doc => workbook.relationships, :schema => RELS_XSD}, - {:entry => WORKBOOK_PN, :doc => workbook, :schema => SML_XSD} + {:entry => "xl/#{STYLES_PN}", :doc => workbook.styles, :schema => SML_XSD}, + {:entry => CORE_PN, :doc => @core, :schema => CORE_XSD}, + {:entry => APP_PN, :doc => @app, :schema => APP_XSD}, + {:entry => WORKBOOK_RELS_PN, :doc => workbook.relationships, :schema => RELS_XSD}, + {:entry => WORKBOOK_PN, :doc => workbook, :schema => SML_XSD} ] workbook.drawings.each do |drawing| |
