Skip to content

Commit

Permalink
Fix mosaic repr typo (#6523)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkm2835 authored and ZwwWayne committed Nov 22, 2021
1 parent a7a16af commit 18e1cdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mmdet/datasets/pipelines/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -2187,8 +2187,8 @@ def _filter_box_candidates(self, bboxes, labels):

def __repr__(self):
repr_str = self.__class__.__name__
repr_str += f'img_scale={self.img_scale}, '
repr_str += f'center_ratio_range={self.center_ratio_range})'
repr_str += f'(img_scale={self.img_scale}, '
repr_str += f'center_ratio_range={self.center_ratio_range}, '
repr_str += f'pad_val={self.pad_val})'
return repr_str

Expand Down

0 comments on commit 18e1cdc

Please sign in to comment.