Skip to content

Commit 71f987d

Browse files
author
gdj0nes
committed
FIX: typing imports
1 parent 6c6e6ca commit 71f987d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

labelbox/data/annotation_types/data/raster.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
from abc import ABC
22
from io import BytesIO
3-
from typing import Callable, Optional
4-
3+
from typing import Callable, Optional, Union
4+
from typing_extensions import Literal
55
import numpy as np
66
import requests
77
from PIL import Image
88
from google.api_core import retry
99
from pydantic import BaseModel
1010
from pydantic import root_validator
11-
from typing import Union, Literal
11+
1212
from .base_data import BaseData
1313
from ..types import TypedArray
1414

0 commit comments

Comments
 (0)