Skip to content

Commit d30e404

Browse files
committed
minor: some trailing spaces and a pylint "pragma" to stop complaining about Series._ix defined elsewhere
1 parent 98c65ac commit d30e404

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ Optional dependencies
9999

100100
- `BeautifulSoup4`_ and `html5lib`_ (Any recent version of `html5lib`_ is
101101
okay.)
102-
- `BeautifulSoup4`_ and `lxml`_
103-
- `BeautifulSoup4`_ and `html5lib`_ and `lxml`_
102+
- `BeautifulSoup4`_ and `lxml`_
103+
- `BeautifulSoup4`_ and `html5lib`_ and `lxml`_
104104
- Only `lxml`_, although see :ref:`HTML reading gotchas <html-gotchas>`
105105
for reasons as to why you should probably **not** take this approach.
106106

pandas/core/series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ def axes(self):
567567

568568
@property
569569
def ix(self):
570-
if self._ix is None:
570+
if self._ix is None: # defined in indexing.py; pylint: disable=E0203
571571
self._ix = _SeriesIndexer(self, 'ix')
572572

573573
return self._ix

0 commit comments

Comments
 (0)