Skip to content

Commit fad361e

Browse files
committed
Fix PEP8 issue
1 parent a57986b commit fad361e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/computation/ops.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ def __unicode__(self):
542542
class FuncNode(object):
543543

544544
def __init__(self, name):
545-
if name not in _mathops or not hasattr(np, name) :
545+
if name not in _mathops or not hasattr(np, name):
546546
raise ValueError(
547547
"\"{0}\" is not a supported function".format(name))
548548
self.name = name

0 commit comments

Comments
 (0)