Skip to content

Commit ab76d80

Browse files
committed
Updating to match pep8 whitespace requirements in sasreader.py
1 parent ffdce1d commit ab76d80

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/sas/sasreader.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
def read_sas(filepath_or_buffer, format=None, index=None, encoding=None,
77
chunksize=None, iterator=False):
8+
89
"""
910
Read SAS files stored as either XPORT or SAS7BDAT format files.
1011
@@ -32,7 +33,7 @@ def read_sas(filepath_or_buffer, format=None, index=None, encoding=None,
3233
if format is None:
3334
buffer_error_msg = ("If this is a buffer object rather"
3435
"than a string name, you must specify"
35-
" a format string")
36+
" a format string")
3637
if not isinstance(filepath_or_buffer,compat.string_types):
3738
raise TypeError(buffer_error_msg)
3839
try:

0 commit comments

Comments
 (0)