File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7576,8 +7576,8 @@ def between_time(
7576
7576
start_time ,
7577
7577
end_time ,
7578
7578
inclusive = "both" ,
7579
- include_start = " bool_t" ,
7580
- include_end = " bool_t" ,
7579
+ include_start = bool_t ,
7580
+ include_end = bool_t ,
7581
7581
axis = None ,
7582
7582
) -> FrameOrSeries :
7583
7583
"""
@@ -7648,16 +7648,16 @@ def between_time(
7648
7648
raise TypeError ("Index must be DatetimeIndex" )
7649
7649
7650
7650
# if depreciated arguments ('include_start', 'include_end') have been passed
7651
- if (include_start != ' bool_t' ) or (include_start != ' bool_t' ):
7651
+ if (include_start != bool_t ) or (include_start != bool_t ):
7652
7652
warnings .warn (
7653
7653
"`include_start` and `include_end` are deprecated in"
7654
7654
"favour of `inclusive`." ,
7655
7655
FutureWarning ,
7656
7656
stacklevel = 2 ,
7657
7657
)
7658
- if include_start == ' bool_t' :
7658
+ if include_start == bool_t :
7659
7659
include_start = True
7660
- if include_end == ' bool_t' :
7660
+ if include_end == bool_t :
7661
7661
include_end = True
7662
7662
else : # if depreciated args haven't been passed
7663
7663
if inclusive == "both" :
You can’t perform that action at this time.
0 commit comments