Skip to content

Commit

Permalink
use == to test String equality (pandas-dev#17171)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhelie authored and jowens committed Sep 20, 2017
1 parent 43dab45 commit 94a734a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/io/parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
def get_engine(engine):
""" return our implementation """

if engine is 'auto':
if engine == 'auto':
engine = get_option('io.parquet.engine')

if engine is 'auto':
if engine == 'auto':
# try engines in this order
try:
return PyArrowImpl()
Expand Down

0 comments on commit 94a734a

Please sign in to comment.