Skip to content

Commit 68c7e9f

Browse files
committed
pep 8 fixes
1 parent 7f75666 commit 68c7e9f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/core/tools/datetimes.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -311,14 +311,14 @@ def _convert_listlike(arg, box, format, name=None, tz=tz):
311311
raise e
312312

313313
def _maybe_convert_cache(arg, cache, tz):
314-
"""Try to convert the datetimelike arg using
314+
"""Try to convert the datetimelike arg using
315315
a cache of converted dates.
316-
316+
317317
arg: datetimelike arg from to_datetime
318318
cache: bool whether to convert using a cache
319319
320-
Result:
321-
Series of converted datetime arg or
320+
Returns:
321+
Series of converted datetime arg or
322322
None if the conversion failed
323323
"""
324324
if cache and is_list_like(arg) and len(arg) >= 1000:

0 commit comments

Comments
 (0)