Skip to content

Commit de61348

Browse files
committed
passing pre-commit checks
1 parent bdc8669 commit de61348

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

examples/__init__.py

Whitespace-only changes.

src/liconic_rest_node.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,7 @@ def state_handler(self) -> None:
141141
description="Set the target temperature of the incubator",
142142
)
143143
def set_target_temp(
144-
self,
145-
temp: Annotated[float, "target temperature in celsius"]
144+
self, temp: Annotated[float, "target temperature in celsius"]
146145
) -> None:
147146
"""Sets the target temperature of the incubator"""
148147

@@ -353,9 +352,7 @@ def load_plate(
353352
slot=slot,
354353
plate_type=plate_type,
355354
)
356-
self.logger.log_info(
357-
f"Plate loaded into LiCONiC stack {stack}, slot {slot}"
358-
)
355+
self.logger.log_info(f"Plate loaded into LiCONiC stack {stack}, slot {slot}")
359356
return None
360357

361358
@action(name="unload_plate", description="Unload a plate from the incubator")

0 commit comments

Comments
 (0)