Skip to content

Commit

Permalink
fixed linting issues rev2
Browse files Browse the repository at this point in the history
  • Loading branch information
sudo-deep committed Feb 14, 2024
1 parent 275c202 commit 89a1567
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion object_detection/object_detection/Detectors/RetinaNet.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from ..DetectorBase import DetectorBase


class RetinaNet(DetectorBase) :
class RetinaNet(DetectorBase):

def __init__(self):
super.__init__()
Expand Down
3 changes: 1 addition & 2 deletions object_detection/object_detection/Detectors/YOLOv8.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@
# limitations under the License.

import os

from ultralytics import YOLO

from ..DetectorBase import DetectorBase


class YOLOv8(DetectorBase):

def __init__(self):

super().__init__()
Expand Down

0 comments on commit 89a1567

Please sign in to comment.