Skip to content

Commit e153e0f

Browse files
committed
Update types
1 parent 01dabd4 commit e153e0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

labelbox/schema/project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from collections import namedtuple
55
from datetime import datetime, timezone
66
from pathlib import Path
7-
from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Union, Type
7+
from typing import TYPE_CHECKING, Any, Dict, Iterable, List, Optional, Union
88
from urllib.parse import urlparse
99

1010
import ndjson
@@ -575,7 +575,7 @@ def setup(self, labeling_frontend, labeling_frontend_options) -> None:
575575

576576
def create_batch(self,
577577
name: str,
578-
data_rows: List[Union[str, Type[DataRow]]],
578+
data_rows: List[Union[str, DataRow]],
579579
priority: int = 5,
580580
consensus_settings: Optional[Dict[str, float]] = None):
581581
"""Create a new batch for a project. Batches is in Beta and subject to change

0 commit comments

Comments
 (0)