Skip to content

Commit

Permalink
pep 8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Oct 4, 2017
1 parent 7f75666 commit 68c7e9f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pandas/core/tools/datetimes.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,14 +311,14 @@ def _convert_listlike(arg, box, format, name=None, tz=tz):
raise e

def _maybe_convert_cache(arg, cache, tz):
"""Try to convert the datetimelike arg using
"""Try to convert the datetimelike arg using
a cache of converted dates.
arg: datetimelike arg from to_datetime
cache: bool whether to convert using a cache
Result:
Series of converted datetime arg or
Returns:
Series of converted datetime arg or
None if the conversion failed
"""
if cache and is_list_like(arg) and len(arg) >= 1000:
Expand Down

0 comments on commit 68c7e9f

Please sign in to comment.