Remove __init__ from slots in ExcelFormula.py for Python 3.3 compatibility

This commit is contained in:
Paul Moore 2012-09-21 23:35:24 +01:00
parent 752443f077
commit 47cebbc328
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ from .antlr import ANTLRException
class Formula(object):
__slots__ = ["__init__", "__s", "__parser", "__sheet_refs", "__xcall_refs"]
__slots__ = ["__s", "__parser", "__sheet_refs", "__xcall_refs"]
def __init__(self, s):