Skip to content

Commit 840cc8c

Browse files
authored
Update missing.py
1 parent eb3a75c commit 840cc8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/missing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def _interp_limit(invalid, fw_limit, bw_limit):
171171

172172
if limit is not None:
173173
if is_integer(limit) and limit < 1:
174-
raise ValueError('Limit must be non-negative')
174+
raise ValueError('Limit must be non-negative.')
175175
if limit_direction == 'forward':
176176
violate_limit = sorted(start_nans | set(_interp_limit(invalid,
177177
limit, 0)))

0 commit comments

Comments
 (0)