Skip to content

Commit

Permalink
calibrationd: remove extra comma (commaai#23472)
Browse files Browse the repository at this point in the history
  • Loading branch information
deanlee authored Jan 9, 2022
1 parent 0c075a6 commit f6c6e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selfdrive/locationd/calibrationd.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def reset(self, rpy_init=RPY_INIT, valid_blocks=0, smooth_from=None):
self.old_rpy = smooth_from
self.old_rpy_weight = 1.0

def get_valid_idxs(self, ):
def get_valid_idxs(self):
# exclude current block_idx from validity window
before_current = list(range(self.block_idx))
after_current = list(range(min(self.valid_blocks, self.block_idx + 1), self.valid_blocks))
Expand Down

0 comments on commit f6c6e34

Please sign in to comment.