Skip to content

Commit 4cf9231

Browse files
committed
PEP8 compliance
1 parent ab76d80 commit 4cf9231

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/io/sas/sasreader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ def read_sas(filepath_or_buffer, format=None, index=None, encoding=None,
3333
if format is None:
3434
buffer_error_msg = ("If this is a buffer object rather"
3535
"than a string name, you must specify"
36-
" a format string")
37-
if not isinstance(filepath_or_buffer,compat.string_types):
36+
" a format string")
37+
if not isinstance(filepath_or_buffer, compat.string_types):
3838
raise TypeError(buffer_error_msg)
3939
try:
4040
fname = filepath_or_buffer.lower()

0 commit comments

Comments
 (0)