diff options
| author | Zsolt Kozaroczy <[email protected]> | 2023-06-27 09:30:10 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-06-27 09:30:10 +0200 |
| commit | f2f6177efac76e6015b98c3290fd1839b8568fbe (patch) | |
| tree | 37551b930bdb8ed3c18e16d8f3e71e9540dad85a /lib/axlsx/workbook/worksheet/worksheet.rb | |
| parent | c18a19b0d3277de2c00380a91b26248dcb34cc51 (diff) | |
| parent | 988c79b8d7602c67f7b761269383129609cf63a7 (diff) | |
| download | caxlsx-f2f6177efac76e6015b98c3290fd1839b8568fbe.tar.gz caxlsx-f2f6177efac76e6015b98c3290fd1839b8568fbe.zip | |
Merge pull request #285 from tagliala/chore/fix-redundant-self-offenses
Fix redundant self offenses
Diffstat (limited to 'lib/axlsx/workbook/worksheet/worksheet.rb')
| -rw-r--r-- | lib/axlsx/workbook/worksheet/worksheet.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/workbook/worksheet/worksheet.rb b/lib/axlsx/workbook/worksheet/worksheet.rb index 47373d75..081f50d8 100644 --- a/lib/axlsx/workbook/worksheet/worksheet.rb +++ b/lib/axlsx/workbook/worksheet/worksheet.rb @@ -711,7 +711,7 @@ module Axlsx # @note The XLSX format does not support worksheet-specific styles. Even when using this method # you're still working with the single global {Axlsx::Styles} object in the workbook. def styles - @styles ||= self.workbook.styles + @styles ||= workbook.styles end # shortcut level to specify the outline level for a series of rows |
