Skip to content

Commit

Permalink
Fixes #475
Browse files Browse the repository at this point in the history
  • Loading branch information
Themanwithoutaplan committed Jun 15, 2015
1 parent 7faa50a commit 5fe1c9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/source/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Bug fixes
* `#465 <https://bitbucket.org/openpyxl/openpyxl/issue/465>`_ ws.cell() returns an empty cell on read-only workbooks
* `#467 <https://bitbucket.org/openpyxl/openpyxl/issue/467>`_ Cannot edit a file with ActiveX components
* `#471 <https://bitbucket.org/openpyxl/openpyxl/issue/471>`_ Sheet properties elements must be in order
* `#475 <https://bitbucket.org/openpyxl/openpyxl/issue/475>`_ Do not redefine class __slots__ in subclasses


2.2.3 (2015-05-26)
Expand Down
2 changes: 1 addition & 1 deletion openpyxl/cell/cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class Cell(StyleableObject):
Properties of interest include style, type, value, and address.
"""
__slots__ = StyleableObject.__slots__ + (
__slots__ = (
'column',
'row',
'coordinate',
Expand Down

0 comments on commit 5fe1c9b

Please # to comment.