File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -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