Skip to content

Commit 4ec32f4

Browse files
committed
Trim trialing white space throughout the project
Many editors clean up trailing white space on save. By removing it all in one go, it helps keep future diffs cleaner by avoiding spurious white space changes on unrelated lines.
1 parent dda1eaf commit 4ec32f4

File tree

6 files changed

+3
-7
lines changed

6 files changed

+3
-7
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ MANIFEST
1313
.Python
1414
/include
1515
/lib
16-

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ python:
1111
- "2.7"
1212

1313
# command to install dependencies
14-
install:
14+
install:
1515
- "pip install -U pip setuptools"
1616
- "pip install -Ur requirements.txt"
1717

docs/changes.rst

-1
Original file line numberDiff line numberDiff line change
@@ -543,4 +543,3 @@ Thanks to the following for their contributions to this release:
543543
-------------------
544544

545545
- first public release
546-

docs/references.rst

-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ source of information on how the :class:`Name` attributes hang together.
3636

3737
Name information is *not* extracted from files older than
3838
Excel 5.0 (``Book.biff_version < 50``).
39-

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
envlist = py36, py35, py34, py33, py27, py26
88

99
[testenv]
10-
commands =
10+
commands =
1111
pip install -Ur requirements.txt
1212
nosetests --with-cov --cov=xlrd
13-

xlrd/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def open_workbook(filename=None,
8787
When ``True``, formatting information will be read from the spreadsheet
8888
file. This provides all cells, including empty and blank cells.
8989
Formatting information is available for each cell.
90-
90+
9191
Note that this will raise a NotImplementedError when used with an
9292
xlsx file.
9393

0 commit comments

Comments
 (0)