Skip to content

Commit e93c7d6

Browse files
release/v0.63.0 (#1052)
Co-authored-by: stuqdog <[email protected]>
1 parent 62300d6 commit e93c7d6

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

src/viam/components/board/board.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,13 @@ async def gpio_pin_by_name(self, name: str) -> GPIOPin:
366366

367367
@abc.abstractmethod
368368
async def set_power_mode(
369-
self, mode: PowerMode.ValueType, duration: Optional[timedelta] = None, *, extra: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, **kwargs
369+
self,
370+
mode: PowerMode.ValueType,
371+
duration: Optional[timedelta] = None,
372+
*,
373+
extra: Optional[Dict[str, Any]] = None,
374+
timeout: Optional[float] = None,
375+
**kwargs,
370376
):
371377
"""
372378
Set the board to the indicated power mode.

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.62.0"
1+
__version__ = "0.63.0"
22

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

tests/mocks/components.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,13 @@ async def do_command(self, command: Mapping[str, ValueTypes], *, timeout: Option
436436
return {"command": command}
437437

438438
async def set_power_mode(
439-
self, mode: PowerMode.ValueType, duration: Optional[timedelta] = None, *, extra: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, **kwargs
439+
self,
440+
mode: PowerMode.ValueType,
441+
duration: Optional[timedelta] = None,
442+
*,
443+
extra: Optional[Dict[str, Any]] = None,
444+
timeout: Optional[float] = None,
445+
**kwargs,
440446
):
441447
self.extra = extra
442448
self.timeout = timeout

0 commit comments

Comments
 (0)