Skip to content

Commit 161dba8

Browse files
committed
Bump version to 0.54.1b0
1 parent 43c25df commit 161dba8

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

src/viam/components/camera/camera.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,14 @@ async def get_image(
6363
...
6464

6565
@abc.abstractmethod
66-
async def get_images(self, *, filter_source_names: Optional[List[str]] = None, extra: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, **kwargs) -> Tuple[List[NamedImage], ResponseMetadata]:
66+
async def get_images(
67+
self,
68+
*,
69+
filter_source_names: Optional[List[str]] = None,
70+
extra: Optional[Dict[str, Any]] = None,
71+
timeout: Optional[float] = None,
72+
**kwargs,
73+
) -> Tuple[List[NamedImage], ResponseMetadata]:
6774
"""Get simultaneous images from different imagers, along with associated metadata.
6875
This should not be used for getting a time series of images from the same imager.
6976

src/viam/components/camera/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from google.api.httpbody_pb2 import HttpBody # type: ignore
44
from grpclib.server import Stream
55

6+
from viam.media.video import CameraMimeType
67
from viam.proto.common import DoCommandRequest, DoCommandResponse, GetGeometriesRequest, GetGeometriesResponse
78
from viam.proto.component.camera import (
89
CameraServiceBase,
@@ -20,7 +21,6 @@
2021
)
2122
from viam.resource.rpc_service_base import ResourceRPCServiceBase
2223
from viam.utils import dict_to_struct, struct_to_dict
23-
from viam.media.video import CameraMimeType
2424

2525
from . import Camera
2626

src/viam/media/video.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from array import array
22
from enum import Enum
33
from typing import List, Optional, Tuple
4+
45
from typing_extensions import Self
56

67
from viam.errors import NotSupportedError

src/viam/version_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.54.0"
1+
__version__ = "0.54.1b0"
22

33
API_VERSION = "v0.1.474"
44
SDK_VERSION = __version__

0 commit comments

Comments
 (0)