Skip to content

Commit 47597c9

Browse files
committed
Class naming consistency
1 parent d0df3bd commit 47597c9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pandas/io/excel/_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -768,14 +768,14 @@ class ExcelFile:
768768
Acceptable values are None or ``xlrd``.
769769
"""
770770

771-
from pandas.io.excel._xlrd import _XlrdReader
771+
from pandas.io.excel._odfreader import ODFReader
772772
from pandas.io.excel._openpyxl import _OpenpyxlReader
773-
from pandas.io.excel._odfreader import ODFReader
773+
from pandas.io.excel._xlrd import _XlrdReader
774774

775775
_engines = {
776776
'xlrd': _XlrdReader,
777777
'openpyxl': _OpenpyxlReader,
778-
'odf': ODFReader,
778+
'odf': _ODFReader,
779779
}
780780

781781
def __init__(self, io, engine=None):

pandas/io/excel/_odfreader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from pandas.io.parsers import TextParser
44

55

6-
class ODFReader:
6+
class _ODFReader:
77
"""Read tables out of OpenDocument formatted files
88
99
Parameters

0 commit comments

Comments
 (0)