Skip to content

Commit 80d67b7

Browse files
committed
Fix code style - is not
1 parent 4bacc45 commit 80d67b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/missing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def _interp_limit(invalid, fw_limit, bw_limit):
155155
raise ValueError('Invalid limit_direction: expecting one of %r, got '
156156
'%r.' % (valid_limit_directions, limit_direction))
157157

158-
if not limit_area is None:
158+
if limit_area is not None:
159159
valid_limit_areas = ['inside', 'outside']
160160
limit_area = limit_area.lower()
161161
if limit_area not in valid_limit_areas:

0 commit comments

Comments
 (0)