Skip to content

Commit 62f332e

Browse files
vbrodskyVal Brodsky
authored andcommitted
Vb/fix ontology leaks plt 1379 (#1814)
1 parent 182aa67 commit 62f332e

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

libs/labelbox/tests/conftest.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,17 @@
22
import os
33
import re
44
import time
5+
<<<<<<< HEAD
56
import uuid
67
from datetime import datetime
8+
=======
9+
from labelbox.schema.project import Project
10+
import requests
11+
from labelbox.schema.ontology import Ontology
12+
import pytest
13+
from types import SimpleNamespace
14+
from typing import Type
15+
>>>>>>> 0bbd7c29 (Vb/fix ontology leaks plt 1379 (#1814))
716
from enum import Enum
817
from random import randint
918
from string import ascii_letters
@@ -1055,7 +1064,7 @@ def project_with_one_feature_ontology(project, client: Client):
10551064

10561065
@pytest.fixture
10571066
def configured_project_with_complex_ontology(
1058-
client: Client, initial_dataset, rand_gen, image_url, teardown_helpers
1067+
client, initial_dataset, rand_gen, image_url, teardown_helpers
10591068
):
10601069
project = client.create_project(
10611070
name=rand_gen(str),

libs/labelbox/tests/data/export/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import time
2-
from labelbox import MediaType, Client
32
import uuid
3+
44
import pytest
55

6+
from labelbox import Client, MediaType
67
from labelbox.schema.annotation_import import AnnotationImportState, LabelImport
78
from labelbox.schema.labeling_frontend import LabelingFrontend
89
from labelbox.schema.media_type import MediaType

libs/labelbox/tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def configured_project(
113113

114114
@pytest.fixture
115115
def configured_project_with_complex_ontology(
116-
client: Client, initial_dataset, rand_gen, image_url, teardown_helpers
116+
client, initial_dataset, rand_gen, image_url, teardown_helpers
117117
):
118118
project = client.create_project(
119119
name=rand_gen(str),

0 commit comments

Comments
 (0)