Skip to content

Commit b622a3f

Browse files
committed
Remove unneeded assignments
1 parent b3764f6 commit b622a3f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pandas/io/excel/_odfreader.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ def __init__(self, filepath_or_stream):
1717
except ImportError:
1818
raise ImportError("Install odfpy for OpenDocument support")
1919

20-
self.filepath_or_stream = None
21-
self.document = None
22-
self.tables = None
2320
self.filepath_or_stream = filepath_or_stream
2421
self.document = document_load(filepath_or_stream)
2522
self.tables = self.document.getElementsByType(Table)

0 commit comments

Comments
 (0)