Skip to content

Commit

Permalink
fix: Imports in predictions
Browse files Browse the repository at this point in the history
  • Loading branch information
antwxne committed Jun 9, 2022
1 parent 5af4a06 commit 4384db9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="CVAT wrapper",
version="0.0.8",
version="0.0.9",
author="antwxne",
author_email="[email protected]",
description="Python wrapper for CVAT API",
Expand Down
2 changes: 1 addition & 1 deletion src/CVAT/Predictions/Foodvisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Created by [email protected] at 5/18/22

from .Interface import IPrediction
from src.CVAT.data_types import LabeledData, Image, PatchedLabel
from ..data_types import LabeledData, Image, PatchedLabel


class Foodvisor(IPrediction):
Expand Down
2 changes: 1 addition & 1 deletion src/CVAT/Predictions/Interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import abc
from typing import Union

from src.CVAT.data_types import LabeledData
from ..data_types import LabeledData


# This class is an interface for a prediction object.
Expand Down

0 comments on commit 4384db9

Please sign in to comment.