We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3764f6 commit b622a3fCopy full SHA for b622a3f
pandas/io/excel/_odfreader.py
@@ -17,9 +17,6 @@ def __init__(self, filepath_or_stream):
17
except ImportError:
18
raise ImportError("Install odfpy for OpenDocument support")
19
20
- self.filepath_or_stream = None
21
- self.document = None
22
- self.tables = None
23
self.filepath_or_stream = filepath_or_stream
24
self.document = document_load(filepath_or_stream)
25
self.tables = self.document.getElementsByType(Table)
0 commit comments