Skip to content

Commit

Permalink
use == to test String equality (#17171)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhelie authored and jreback committed Aug 7, 2017
1 parent cdabac1 commit 3ab7d5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/io/parquet.py
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 3ab7d5c

Please sign in to comment.