Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelbray32 committed Nov 16, 2023
1 parent 062a575 commit 7f3ccdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spyglass/common/common_position.py
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ def make(self, key):
# if IntervalPositionInfo supersampled position, downsample to video
if position_info_df.shape[0] > raw_position_df.shape[0]:
ind = np.digitize(
raw_position_df.index, position_info_df.index,right=True
raw_position_df.index, position_info_df.index, right=True
)
position_info_df = position_info_df.iloc[ind]

Expand Down

0 comments on commit 7f3ccdd

Please sign in to comment.