Skip to content

Commit

Permalink
feat: predictions
Browse files Browse the repository at this point in the history
  • Loading branch information
antwxne committed Jun 8, 2022
1 parent 2e0f437 commit 9f68b5c
Show file tree
Hide file tree
Showing 4 changed files with 4 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.3",
version="0.0.4",
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
@@ -1,7 +1,7 @@
#!/bin/python3
# Created by [email protected] at 5/18/22

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


Expand Down
2 changes: 2 additions & 0 deletions src/CVAT/Predictions/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from .Foodvisor import *
from Interface import IPrediction
1 change: 0 additions & 1 deletion src/CVAT/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from ._put import Put
from ._static import Static
from .data_types import Task
from .Prediction import *


class CVAT(Get, Post, Delete, Patch, Put, Static):
Expand Down

0 comments on commit 9f68b5c

Please sign in to comment.