Skip to content

Commit

Permalink
fix the lint
Browse files Browse the repository at this point in the history
fix the lint
  • Loading branch information
yinfan98 authored Oct 7, 2023
1 parent dbbb867 commit aef7b99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mmdeploy/mmcv/ops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
from . import roi_align # noqa: F401,F403
from . import roi_align_rotated # noqa: F401,F403
from . import transformer # noqa: F401,F403
from .nms import ONNXNMSop, TRTBatchedNMSop, multiclass_nms
from .nms import ONNXNMSop, TRTBatchedNMSop, multiclass_nms # noqa: F401,F403
from .nms_match import ONNXNMSMatchOp, multiclass_nms_match
from .nms_rotated import (ONNXNMSRotatedOp, TRTBatchedRotatedNMSop,
multiclass_nms_rotated)
from .nms_rotated import multiclass_nms_rotated # noqa: F401,F403
from .nms_rotated import ONNXNMSRotatedOp, TRTBatchedRotatedNMSop

__all__ = [
'ONNXNMSop', 'TRTBatchedNMSop', 'TRTBatchedRotatedNMSop',
'ONNXNMSRotatedOp', "multiclass_nms_rotated"
'ONNXNMSRotatedOp', 'multiclass_nms_rotated'
'multiclass_nms', 'ONNXNMSMatchOp', 'multiclass_nms_match'
]

0 comments on commit aef7b99

Please sign in to comment.